diff options
-rw-r--r-- | racket.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/racket.html.markdown b/racket.html.markdown index 8c15d447..856fa75c 100644 --- a/racket.html.markdown +++ b/racket.html.markdown @@ -617,7 +617,7 @@ vec ; => #(1 2 3 4) ;; Append to "/tmp/tmp.txt" (define out-port (open-output-file "/tmp/tmp.txt" - #:exists 'append)) + #:exists 'append)) (displayln "Hola mundo" out-port) (close-output-port out-port) |