unison/unison-src/errors/unresolved-symbol-1.u

7 lines
147 B
Plaintext
Raw Normal View History

let
(|>) : a -> (a -> WHat) -> b -- unresolved symbol
a |> f = f a
2019-02-21 22:49:12 +03:00
Stream.fromInt -3
|> Stream.take 10
2019-02-21 22:49:12 +03:00
|> Stream.foldLeft +0 (Int.+)