remove the pipe operator

This commit is contained in:
2026-06-06 19:41:54 +02:00
parent c41c22e936
commit 3a53cd4f32
9 changed files with 19 additions and 79 deletions

View File

@@ -3,7 +3,7 @@ func main[] : i64
while true
io.println("Guess a number: ")
guess := io.read_line() |> str.trim() |> str.parse_i64()
guess := str.parse_i64(io.read_line())
if guess == answer
io.println("You win!")