With the following code:
var fFile = new File("myfile.txt");
fFile.open("at+");
fFile.writeln(getMonth() + getDay());
fFile.close();
How is it possible that I am getting one digit numbers written to my file?
Thanks
fan27
var fFile = new File("myfile.txt");
fFile.open("at+");
fFile.writeln(getMonth() + getDay());
fFile.close();
How is it possible that I am getting one digit numbers written to my file?
Thanks
fan27
Comment