tvl-depot/users/tazjin/rlox/examples/func.lox
Vincent Ambo 6a38600ce8 chore(tazjin/rlox): Add some old code example files
Change-Id: I484b11069286ea2277e9e158fa5c3bd34f84c89e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3464
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
2021-10-19 12:58:43 +00:00

5 lines
57 B
Text

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