about summary refs log blame commit diff
path: root/users/tazjin/rlox/examples/func.lox
blob: d197ad11383f43bba49753498a579ec825147b8e (plain) (tree)
1
2
3
4
5




                         
fun foo(name) {
  print("hello " + name);
}

foo("bar");