RosettaCodeData/Task/Read-entire-file/Factor/read-entire-file.factor

8 lines
188 B
Factor
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
USING: io.encodings.ascii io.encodings.binary io.files ;
! to read entire file as binary
"foo.txt" binary file-contents
! to read entire file as lines of text
"foo.txt" ascii file-lines