Meta Project

The Unofficial Meta Documentation

FILE!

Summary

FILE! the file datatype for Meta.

Category

DATATYPE FILE-IO GENERAL-IO

Usage

See example

Arguments

N.A.

Refinements

/refinement - description of refinement This method has no refinements Not applicable on category

Description

FILE! the file datatype for Meta.

Example Code

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
]

Related

APPEND  
OPEN  
CLOSE  
TAKE  

Back to the Meta Datatypes Reference index