Name: Anonymous 2013-10-03 0:11
This thread is about /prog/ramming for /prog/rammers and /DPT/ers
What are you working on?
What are you working on?
(define functions
(list
(list "pi" 3.14159265359 0)
(list "e" 2.71828182845 0)
(list "id" identity 1)
(list "add1" add1 1)
(list "sub1" sub1 1)
(list "abs" abs 1)
(list "cos" cos 1)
(list "sin" sin 1)
(list "tan" tan 1)
(list "nl" log 1)
(list "phi" phi 1)
(list "sqrt" sqrt 1)
(list "round" int-round 1)
(list "+" + 2)
(list "*" * 2)
(list "/" / 2)
(list "-" - 2)
(list "**" expt 2)
(list "ack" ack 2)
(list "mod" modulo 2)
(list "gcd" gcd 2)
(list "log" log-b 2)))
(list "add3" (lambda (x) (+ 3 x) 1)