wrote test program for functions

This commit is contained in:
SpookyDervish
2025-10-14 21:34:18 +11:00
parent bf0f9a9348
commit 170146ee7e

View File

@@ -1,3 +1,7 @@
test = Func(): Int {
return 123;
}
main = Func(): Int { main = Func(): Int {
return test();
} }