nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
========= FILE ./src/runtime/tests/fixtures/not_op_bug/not_op_bug.ir.actual ========
MAIN () {
block0:
  t1 = true
  jnt t1 block2
  next block1

block1:
  t14 = false
  jump block3(t14)

block2:
  next block3(t1)

block3(t11):
  jnt t11 block5(t11)
  next block4

block4:
  next block5(t1)

block5(t12):
  jnt t12 block8
  next block6

block6:
  t4 = "error! uh oh spaghetti o"
  PRINT t4
  t6 = null
  RETURN t6

block8:
  t7 = "success!"
  PRINT t7
  t9 = null
  RETURN t9

}