fork download
  1. (display (cons (quote (a b c)) ' ()))
  2. (newline)
  3.  
  4. (display (cons (quote (a b c)) #f))
  5. (newline)
  6.  
  7. (display (cons (quote (a b c)) #t))
  8. (newline)
  9.  
Success #stdin #stdout 0.03s 4132KB
stdin
Standard input is empty
stdout
((a b c))
((a b c) . #f)
((a b c) . #t)