double dot in for ranges

This commit is contained in:
2025-06-13 16:59:22 +02:00
parent a93274d8ac
commit 7425ab256b
19 changed files with 43 additions and 33 deletions

View File

@@ -14,7 +14,7 @@ func main[] : I64
let max: I64 = 0
let max_index: I64 = 0
for i in 1:1000000
for i in 1..1000000
let seq: I64 = collatz_seq(i)
if seq > max
max = seq