Fixed some 'size_t' issues and a bug caught on a different platform

This commit is contained in:
2026-04-23 10:40:00 +10:00
parent 991d29e3e6
commit 5a867ac627
3 changed files with 26 additions and 4 deletions
@@ -0,0 +1,10 @@
//check functions are first class citizens
fn hello() {
print "Hello world";
}
fn identity(x) {
return x;
}
assert identity(hello) == hello, "First class function check failed";