make types lowercase :)

This commit is contained in:
2025-12-22 21:21:15 +01:00
parent 7c23e57ec0
commit ebc887fb5b
40 changed files with 438 additions and 438 deletions

View File

@@ -1,9 +1,9 @@
func main[] : I64
let a: I64 = 0
let b: I64 = 1
func main[] : i64
let a: i64 = 0
let b: i64 = 1
while a < 100000
io.println_i64(a)
let temp: I64 = b
let temp: i64 = b
b = a + b
a = temp