Annotation of 43BSD/contrib/icon/book/07/fib1.icn, revision 1.1

1.1     ! root        1: procedure fib(i)
        !             2:    if i = 1 then return 1
        !             3:    if i = 2 then return 1
        !             4:    return fib(i - 1) + fib(i - 2)
        !             5: end

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.