Initial commit

This commit is contained in:
2025-09-19 17:47:22 +10:00
commit e027131489
24 changed files with 1472 additions and 0 deletions

13
file/README.md Normal file
View File

@@ -0,0 +1,13 @@
# file library
This library allows reading from and writing to files on the system.
## Functions
### fun -string !readFile -string &fileName
This function reads all content from a file and returns it.
### fun -bool !writeFile -string &fileName -string &content
This function overwrites a file with specified content. If successful, returns true. If not successful, returns false, and prints out a reason why it didn't work.