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

@@ -8,7 +8,7 @@ A very cool language
* Growing [standard library](https://git.ton1.dev/toni/zern/src/branch/main/src/std)
* Produces tiny static executables (11KB for `hello.zr`)
* No libc required!
* Has type inference, pipe operator, variadics, dynamic arrays, hashmaps, DNS resolver, etc.
* Has type inference, variadics, dynamic arrays, hashmaps, DNS resolver, etc.
## Syntax
```rust
@@ -17,7 +17,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!")
@@ -28,20 +28,6 @@ func main[] : i64
io.println("Too high!")
```
```rust
func square[x: i64] : i64
return x * x
func sum[a: i64, b: i64] : i64
return a + b
func main[] : i64
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
|> alg.map(^square)
|> alg.reduce(^sum, 0)
|> io.println_i64()
```
## Quickstart
```
cargo install --git https://git.ton1.dev/toni/zern