Disable upcase converting

This commit is contained in:
Nikolay Puzanov 2023-02-22 10:53:46 +03:00
parent 8251bc5b16
commit 256ee6269c

View File

@ -46,7 +46,4 @@
(format #t "Usage: ~a <words-list-file.txt>\n" (car args))
(let ((WORDS-FILE (cadr args)))
(set! *random-state* (random-state-from-platform))
(display
(string-upcase
(random-phrase WORDS-FILE (+ 3 (random 4)))))
(newline))))
(format #t "~a\n" (random-phrase WORDS-FILE (+ 3 (random 4)))))))