nilang 0.4.1

A scripting language interpreter for Advent of Code
Documentation
1
2
3
4
5
6
fn farenheit_to_celsius(f) {
  return (f - 32) * (5.0 / 9.0);
}

print(farenheit_to_celsius(32)); // 0
print(farenheit_to_celsius(212)); // 100