FILE! the file datatype for Meta.
DATATYPE FILE-IO GENERAL-IO
See example
N.A.
/refinement - description of refinement This method has no refinements Not applicable on category
FILE! the file datatype for Meta.
You will probably no see the FILE! type in declaration, but the FILE! type is used by Meta for doing things with files.
; Open in-file
file-in: ./functions.in.txt
Either fhandle-in: try open file-in [
write "Reading input file " write/line file-in
][
write/line "Not able to open file: "
write/line file-in
bye
]