diff --git a/example/pipe.hz b/example/pipe.hz index 7ec9960..371d42c 100644 --- a/example/pipe.hz +++ b/example/pipe.hz @@ -3,11 +3,12 @@ fun bar (xs: int) (x: int): int = return xs - x; fun main: int = do let res: int = foo(69) - |> bar(1); + |> bar(1); @write(res); @write("\n"); - let y: int = 68 |> foo(); + let y: int = 68 + |> foo(); @write(y); end; \ No newline at end of file