nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
========= FILE ./src/runtime/tests/fixtures/expr_precedence/expr_precedence.ir.actual ========
fn1 () {
block0:
  t0 = 1
  RETURN t0

}
MAIN () {
block0:
  t4 = 21
  PRINT t4
  one_0 = fn1
  t8 = CALL one_0
  t9 = CALL one_0
  t10 = t8 + t9
  PRINT t10
  t12 = null
  RETURN t12

}