rlox/interpreter/tests/lox/function/print.lox

4 lines
81 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
fun foo() {}
print foo; // expect: <fn foo>
print clock; // expect: <native fn>