fork download
  1. ; your code goes here
  2. (display (+ 2 3))
  3. (newline)
  4. (display (+ 3 (* 4 5)))
  5. (newline)
  6. (define a 0)
  7. (define b 0)
  8. (display (and (= a b) (not (= a 1))))
Success #stdin #stdout 0.02s 10748KB
stdin
Standard input is empty
stdout
5
23
#t