OPEN opens a file handle for the program.
FILE-IO GENERAL-IO
OPEN value
value - description of the value
/APPEND - Open the file for appending new information at the end of current contents.
/NEW - Open as a new file, discarding (throwing away!!) previous contents of the file.
OPEN opens a file handle to address the various IO actions for the program.
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
]