nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
========= FILE ./src/runtime/tests/fixtures/basic_interpolation/basic_interpolation.ir.actual ========
MAIN () {
block0:
  t0 = "Hello, "
  t1 = "interpolated"
  t2 = #str
  STORE_ARG t1
  t3 = CALL t2
  t0 << t3
  t4 = " world!"
  t0 << t4
  PRINT t0
  t6 = null
  RETURN t6

}