Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

LISP [part λ f x. f (f x)]

Name: Anonymous 2008-01-31 8:38

LISP

Name: Anonymous 2008-02-04 19:25


int fib(int n) {
    if (0 == n || 1 == n)
        return 1;
    else
        return fib(n-1) + fib(n-2); }

Valid C Code

Newer Posts