nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
1
2
3
4
5
6
7
8
9
fn recursive_function(i) {
  if i == 20 {
    print("oh no look out for that number!" + 1);
  } else {
    recursive_function(i + 1);
  }
}

recursive_function(0);