nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
========= FILE ./src/runtime/tests/fixtures/importing/importing.ir.actual ========
MAIN () {
block0:
  t0 = "./src/runtime/tests/test_programs/exporting.nl"
  IMPORT value_0, t0
  PRINT value_0
  t5 = true
  t6 = #flag
  STORE_GLB t6, t5
  t7 = "./src/runtime/tests/test_programs/exporting.nl"
  IMPORT value_1, t7
  PRINT value_1
  t10 = null
  RETURN t10

}
========= FILE ./src/runtime/tests/fixtures/importing/importing.ir.actual ========
MAIN () {
block0:
  t0 = #flag
  LOAD_GLB t1, t0
  jnt t1 block3
  next block1

block1:
  t2 = "flag is set"
  RETURN t2

block3:
  t3 = null
  RETURN t3

}