faculty
[cc1516.git] / examples / old / Markus / stress_test.spl
1 // Uncomment lines one by one. How far can you take your compiler?
2
3 f0(x) { return (x, x); }
4 f1(x) { return f0(f0(x)); }
5 f2(x) { return f1(f1(x)); }
6 f3(x) { return f2(f2(x)); }
7 //f4(x) { return f3(f3(x)); } //using f4 gives Heap-full
8 // f5(x) { return f4(f4(x)); }
9 main() {return;}