Files
ueforth/ueforth/common/filetools.fs
2021-01-07 17:33:17 -08:00

6 lines
171 B
Forth

: dump-file ( a n a n -- )
w/o create-file if drop ." failed create-file" exit then
>r r@ write-file if r> drop ." failed write-file" exit then
r> close-file drop
;