about summary refs log tree commit diff
path: root/users/tazjin/rlox/examples/func.lox
blob: d197ad11383f43bba49753498a579ec825147b8e (plain) (blame)
1
2
3
4
5
fun foo(name) {
  print("hello " + name);
}

foo("bar");