Expanded docs

This commit is contained in:
2026-05-17 09:47:46 +10:00
parent 8013ccb1da
commit 414a9d6194
8 changed files with 243 additions and 47 deletions
+9 -8
View File
@@ -1,11 +1,12 @@
var array = [1,2,3];
print array;
fn double(x: Int) { return x * 2; }
array.forEach(double);
print array;
if (true) {
print "Who?";
}
else if (true) {
print "What?";
}
else {
print "IDK";
}