net.connect, net.listen

This commit is contained in:
2025-07-26 13:21:37 +02:00
parent 65bdac2fe3
commit 9ae0230f5f
10 changed files with 97 additions and 150 deletions

View File

@@ -2,6 +2,6 @@ func main[] : I64
let sum: I64 = 0
for i in 0..1000
if i % 5 == 0 || i % 3 == 0
if i % 5 == 0 | i % 3 == 0
sum = sum + i
io.print_i64(sum)