Organisation, documentation, mathlib

This commit is contained in:
2025-08-28 11:11:59 +10:00
parent a9bfc1b0e3
commit 6596bfcc85
13 changed files with 948 additions and 1 deletions

13
extlibs/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.