<fs> Internal Library
Baseline file-system helpers.
Import
import fs "<fs>"
API
exists(path) -> boolread_text(path) -> string | nonewrite_text(path, text) -> bool
Example
import fs "<fs>"
fs.write_text("note.txt", "hello")
if fs.exists("note.txt") {
display(fs.read_text("note.txt"))
}