not done yet

This commit is contained in:
Neemek 2025-03-30 10:42:28 +02:00
parent b73af5f92f
commit 49c15f6fb6
15 changed files with 473 additions and 389 deletions

View file

@ -22,3 +22,6 @@ while x <= 100 {
x = x + 1
}
assertEq([1, 2] + [3], [1, 2, 3])
assertEq(["Eny", "meanie"] + ["minie", "moe"], ["Eny", "meanie", "minie", "moe"])

View file

@ -19,8 +19,8 @@ while n < fibonacci_numbers.length() {
n = n + 1
}
# return to start of line
print(format("%[%D", [char(0x1B), n]))
# return to start of line (with carriage return \r)
print(char(0x0D))
x := 0
while x < fibonacci_numbers.length() {