cilk.cilk 261 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // Syntax Highlighting Test file for Cilk // Comments are like this /* And This */ cilk int fib (int n) { if (n<2) return (n); else { int x,y; spawn x = fib(n-1); spawn y = fib(n-2); sync; return (x+y); } }