comparison operators

This commit is contained in:
2025-05-30 18:07:26 +02:00
parent 3a876a97d3
commit 2bc24c394d
3 changed files with 31 additions and 9 deletions

8
examples/fib.mot Normal file
View File

@@ -0,0 +1,8 @@
let a: I64 = 0
let b: I64 = 1
while a < 100000
print(a)
let temp: I64 = b
b = a + b
a = temp