Comment tweaks

This commit is contained in:
2026-04-12 15:02:07 +10:00
parent c0c03a4110
commit e24823924a
3 changed files with 12 additions and 3 deletions

View File

@@ -1,4 +1,13 @@
fn swap(a, b) {
return b, a;
}
print 1;
var a = 42;
var b = 69;
var c;
var d;
//TODO: reverse the assignment bytecode order?
c, d = swap(a, b);