JanetDocs
Source
Playground
Tutorials
I'm Feeling lucky
Community
GitHub sign in
Run
Format
# opens a file named filename for writing, and writes Hello World! (def f (file/open "filename" :w)) (file/write f "Hello World!") (file/flush f) (file/close f)