v2.8.1 : File System Update
- Implemented a new library called
FileSystem
- Implemented
readFile
function you use it like:
foo = readFile("C:\hello.txt")
- Implemented
writeFile
function you use it like:
writeFile("C:\hello.txt", "How%0aYea?")
- Implemented
appendFile
function you use it like:
appendFile("C:\hello.txt", "How%0aYea?")
- Implemented
deleteFile
function you use it like:
deleteFile("C:\hello.txt")
- Implemented
moveFile
function you use it like:
moveFile("C:\hello.txt", "world.txt?")
- Implemented
createFile
function you use it like:
createFile("C:\hello.txt")
- Implemented
readlineFile
function you use it like:
foo = readlineFile("C:\hello.txt", 1)
other than file system
- You can get user input, like:
foo = userInput()
Support for ARM Hardware