racket/collects/2htdp/tests/batch-io2.rkt
2010-12-06 23:04:08 -05:00

18 lines
236 B
Racket

#lang racket
;; test for pr11445
(require 2htdp/batch-io)
(with-output-to-file "batch-io2.txt"
(lambda ()
(display "hello")
(display #\return)
(display #\linefeed))
#:exists 'replace)
(read-lines "batch-io2.txt")