This commit is contained in:
2025-05-31 16:52:49 +02:00
parent f98ca8075d
commit 16431b2ea2
3 changed files with 32 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ func main[] : I64
let b: I64 = 1
while a < 100000
print(a)
print_i64(a)
let temp: I64 = b
b = a + b
a = temp

2
examples/hello.zr Normal file
View File

@@ -0,0 +1,2 @@
func main[] : I64
print("Hello, World!")