Tweak, but I need a decompiler now

This commit is contained in:
2026-04-10 16:19:03 +10:00
parent 547229e150
commit 66155fa213
2 changed files with 19 additions and 5 deletions

View File

@@ -1,6 +1,20 @@
print "Hello world";
var answer = 42;
var question = 69;
print answer + question;
/*
{
fn hello() {
print "Hello world";
}
hello();
}
*/
{
fn hello(arg) {
print arg;
}
hello("world");
}