aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.fwd
blob: e5014afcb92b7ac73d1774b789215bd9016a1a2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* heh, this technically speaking works, but I guess the compiler can't collapse
 * frames so the bifurcating nature of fibonacci just gets mapped to a linear
 * sequence of calls, taking up way more stack space than a typical, returning,
 * function  */

fib(int n, (int) res)
{
	fwd_copy(n) => int n1, int n2;
	if n1 < 2 {
		res(1);
	} else {
		fib(n2 - 1) => int f1;
		fib(n2 - 2) => int f2;
		res(f1 + f2);
	}
}

/* 'extern' println */
fwd_println(auto n);
fwd_copy(auto n, (auto, auto) n1);

main()
{
	fib(6) => int n;
	fwd_println(n);
}