nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
========= FILE ./src/runtime/tests/fixtures/clone_intrinsic/clone_intrinsic.ir.actual ========
MAIN () {
block0:
  t0 = NEW_LIST
  t1 = 0
  t0 << t1
  CLONE b_0 = t0
  t6 = 1
  b_0[t1] = t6
  PRINT t0
  PRINT b_0
  a_1 = "foo"
  CLONE b_1 = a_1
  t14 = "bar"
  b_1 << t14
  PRINT a_1
  PRINT b_1
  t19 = null
  RETURN t19

}