nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
========= FILE ./src/runtime/tests/fixtures/basic_map_usage/basic_map_usage.ir.actual ========
MAIN () {
block0:
  a_0 = NEW_MAP
  t2 = 1
  t3 = #b
  a_0[t3] = t2
  PRINT a_0
  t6 = 2
  a_0[t3] = t6
  PRINT a_0
  t11 = #a
  a_0[t11] = t2
  t12 = 3
  t13 = #c
  a_0[t13] = t12
  t15 = a_0[t11]
  PRINT t15
  t19 = a_0[t3]
  PRINT t19
  t23 = a_0[t13]
  PRINT t23
  t26 = #d
  t27 = a_0[t26]
  PRINT t27
  t29 = null
  RETURN t29

}