Updated and revised some tests

This commit is contained in:
2026-05-19 11:24:49 +10:00
parent 414a9d6194
commit a0d75b3c70
20 changed files with 49 additions and 54 deletions
@@ -0,0 +1,10 @@
//check functions are first class citizens
fn hello() {
print "Hello world";
}
fn ident(x) {
return x;
}
assert ident(hello) == hello, "First class function check failed";