aboutsummaryrefslogtreecommitdiffstats
path: root/examples/test.milch
blob: d8d0077a7550983316e96987d189cf4e1215db14 (plain)
1
2
3
4
5
6
7
8
9
10
11
(import "stdlib/common.milch")

(map (+ 1) [1 2 3])

(foldr + 0 [1 2 3])

(filter is-even [0 1 2 3 4 5])

(reverse [1 2 3])

(pipe 10 [(+ 1) (+ 2)])