about summary refs log tree commit diff
path: root/users/tazjin/rlox/examples/func.lox
fun foo(name) {
  print("hello " + name);
}

foo("bar");