aboutsummaryrefslogtreecommitdiffhomepage
path: root/samples/rosetta/y_combinator.bruijn
blob: 95a985b3e9c1e39273436b631f624772ceb9118f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
:import std/Number .

# sage bird combinator
y [[1 (0 0)] [1 (0 0)]]

# factorial using y
factorial y [[=?0 (+1) (0 ⋅ (1 --0))]]

:test ((factorial (+6)) =? (+720)) ([[1]])

# (very slow) fibonacci using y
fibonacci y [[0 <? (+1) (+0) (0 <? (+2) (+1) rec)]]
	rec (1 --0) + (1 --(--0))

:test ((fibonacci (+6)) =? (+8)) ([[1]])