whalesong/tests/older-tests/moby-programs/display-and-write.rkt

13 lines
219 B
Racket

#lang s-exp "../../lang/wescheme.rkt"
(printf "should not be in quotes: ")
(display "hello world")
(newline)
(printf "should be in quotes: ")
(write "hello world")
(newline)
((current-print) "using current-print")