aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.fwd
blob: 8b0e0550b440e8d852dede757119fcdb032a75a6 (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
/* heh, this technically speaking would work but the templating turns out to be
 * too much for both GCC and clang. With some manual intervention on the
 * generated code I can get fibonacci numbers up to about 35 to work, but then
 * I run out of stack space. I guess the compiler can't collapse frames so the
 * bifurcating nature of fibonacci just gets mapped to a linear sequence of
 * calls? */

fib(n, res)
{
	fwd_if(n < 2) => {
		res(1);
	} => {
		fib(n - 1) => f1;
		fib(n - 2) => f2;
		res(f1 + f2);
	}
}

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