Concept
- Core file operations include read, write and append.
- Path and time helpers live in built-in modules.
Example
write "hello.txt" "Hello"
append "hello.txt" " SE"
text = read "hello.txt"
say text
use path
file = path.join "data" "user.txt"
say path.exists file
use time
say time.now
wait 500ms