File - mfichman/jogo GitHub Wiki
open(path String, mode String) Io::Stream
Opens a stream to the file specified by 'path'. Returns 'nil' if the file cannot be found. The 'mode' parameter specifies how the file should be opened, and may be one of the following: "r": Open for reading; file must exist "w": Open for writing; creates a new file if 'path' doesn't exist "a": Open for appending; creates a new file if 'path' doesn't exist "rw": Open a file for reading and writing; file must exist