You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
488 B
Common Lisp
33 lines
488 B
Common Lisp
(+ 1 (+ 1 1) (dave (sam 1)))
|
|
|
|
; alright I have comments now!!!!
|
|
; woooohooo!!!!
|
|
; nice nice nice
|
|
|
|
(+ 1
|
|
22.3
|
|
a
|
|
;here comes a comment
|
|
3.
|
|
(one two three)
|
|
"this is a string"
|
|
4.0
|
|
((one two) three)
|
|
abøne
|
|
(dave
|
|
1
|
|
"here's an escaped quote: \" how neat!!!"
|
|
2
|
|
"and here;'s an escaped \\, sweet!"
|
|
albert-camus
|
|
3
|
|
(sam 3 2 2)))
|
|
|
|
|
|
|
|
(begin (set! x 1)
|
|
(set! x (+ x 1))
|
|
(* x 2))
|
|
|
|
(begin (define r 3) (* 3.141592653 (* r r)))
|