[ Back to the overview Matrix ]

Test case : Type "file" using Forth

Lines used: 4
  
: .file ( c-addr u -- ) \ use like  cr s" foo.txt" .file
  r/o bin open-file throw ( -- handle ) >R
  pad dup unused R@ read-file throw ( addr u -- ) type
  R> close-file throw ;
Contributed by Marcel Hendrix, mhx at iae.nl