hascheme/tests/eval

19 lines
150 B
Text
Raw Permalink Normal View History

2013-07-26 16:25:04 +00:00
(+ 2 2)
4
(* 3 5)
15
(/ 10 2)
5
(- 15 5 3 2)
5
(* (+ 2 2) (- 4 3))
4
(boolean? #t)
#t
(boolean? (+ 2 2))
#f
(string? "hello")
#t
(string? (* 3 2))
#f