Thalassicus
Bytes and Nibblers
I'd like to dump a bunch of data to a file, instead of the console. However, when I open the file:
local f = io.open(filename, "a");
An error message occurs, "attempt to index local io (a nil value)".
Is there something I need to include to use io operations? I'm following the instructions in the manual here.
local f = io.open(filename, "a");
An error message occurs, "attempt to index local io (a nil value)".
Is there something I need to include to use io operations? I'm following the instructions in the manual here.