List of functions and data types in IO
Void putStr(File h, String s)
Arguments
h: A writable or appendable file handle
s: The string to write
Usage
Write a string (including NULL termination) to a binary file. The string will be written to the file in UTF-8 encoding.
Related