Updated QUICKSTART, moved it to docs

This commit is contained in:
2026-05-15 14:56:43 +10:00
parent 3ab18c7b14
commit 2eaf0a9b0f
4 changed files with 68 additions and 33 deletions
+8 -8
View File
@@ -1,11 +1,11 @@
fn swap(a, b) {
return b, a;
}
var a = 42;
var b = 69;
var c;
var d;
var array = [1,2,3];
c, d = swap(a, b);
print array;
fn double(x: Int) { return x * 2; }
array.forEach(double);
print array;