;;; Example of writing to a file ;;; Creates a file handle for appending to junk.txt (define fha (open-file "junk.txt" "a") ) ;;; Appends the string "hi" to junk.txt ; (display "hi\n" fha)