Name: write-line
Syntax: (write-line str [file])
Description: Returns the string of characters that are entered. It can also optionallywrite the string out to a text file.
Example(s): (write-line "Hello World!") "Hello World!"
(setq op-file (open "hworld.txt" "w")) (write-line "Hello World!" op-file) (close op-file) Hello World!
|