home: hub: 9ficl

ref: 4e44bee3f28371464c59f2b57c09823fea5e3ebb
dir: /softwords/fileaccess.fr/

View raw version
\ #if FICL_WANT_FILE
\ ** 
\ ** File Access words for ficl
\ ** submitted by Larry Hastings, larry@hastings.org
\ **

: r/o 1 ;
: r/w 3 ; 
: w/o 2 ; 
: bin 8 or ; 

: included
    r/o bin open-file 0= if
        locals| f | end-locals
        f include-file
        f close-file drop
    else
        drop
    endif
    ;

: include parse-word included ; immediate

\ #endif