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

@@ -17,5 +17,5 @@ func fib[n: I64] : I64
func main[] : I64
for i in 0..20
fib(i) |> I64.to_string() |> print()
fib(i) |> str.from_i64() |> io.print()
```