Write-File

(write-file file string) -> null

Ouputs the given string to the given file.

Example:

>> (define a (open-file "test.txt" "rwc"))
:: [fileopen test.txt]
>> (write-file a "Just testing.")
:: null