nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
========= FILE ./src/runtime/tests/fixtures/one_plus_one/one_plus_one.ir.actual ========
fn1 (a_0, b_0) {
block0:
  t2 = a_0 + b_0
  RETURN t2

}
MAIN () {
block0:
  add_0 = fn1
  t1 = 1
  STORE_ARG t1
  STORE_ARG t1
  t3 = CALL add_0
  PRINT t3
  t5 = null
  RETURN t5

}