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

Code

Name: Anonymous 2018-10-11 15:00

Learn how to code for fun here! 😀 http://codegym.cc

Name: Anonymous 2018-10-11 20:28

enjoy your ban

Name: Anonymous 2018-10-12 7:13

>>2

enjoy your unban...on brett kavanaugh

Name: Anonymous 2018-10-14 3:47

>>1
Java
fuck you

Name: Anonymous 2019-01-30 7:33

This is how you write a Fibbonacci function in CHICKEN Scheme.

(define (fib n)
(cond
((= n 0) 0)
((= n 1) 1)
(else
(+ (fib (- n 1))
(fib (- n 2))))))


Write a recursive function in CHICKEN Scheme that calculates the factorial.

E.g. 4! = 4*3*2*1 = 24

Name: Anonymous 2019-01-31 8:16

>>5

Ask your question in commonlounge instead. I doubt there are any souls who is coming to this board! http://www.commonlounge.com

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List