v2.8.1 : File System Update
- Implemented a new library called
FileSystem - Implemented
readFilefunction you use it like:
foo = readFile("C:\hello.txt")- Implemented
writeFilefunction you use it like:
writeFile("C:\hello.txt", "How%0aYea?")- Implemented
appendFilefunction you use it like:
appendFile("C:\hello.txt", "How%0aYea?")- Implemented
deleteFilefunction you use it like:
deleteFile("C:\hello.txt")- Implemented
moveFilefunction you use it like:
moveFile("C:\hello.txt", "world.txt?")- Implemented
createFilefunction you use it like:
createFile("C:\hello.txt")- Implemented
readlineFilefunction 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