Fix Racket style

This commit is contained in:
Duong H. Nguyen 2014-01-05 21:29:27 +07:00
parent f542ed357d
commit 17f4ff8588

View File

@ -617,7 +617,7 @@ vec ; => #(1 2 3 4)
;; Append to "/tmp/tmp.txt" ;; Append to "/tmp/tmp.txt"
(define out-port (open-output-file "/tmp/tmp.txt" (define out-port (open-output-file "/tmp/tmp.txt"
#:exists 'append)) #:exists 'append))
(displayln "Hola mundo" out-port) (displayln "Hola mundo" out-port)
(close-output-port out-port) (close-output-port out-port)