RosettaCodeData/Task/File-size/Forth/file-size.fth
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
198 B
Forth

: .filesize ( addr len -- ) 2dup type ." is "
r/o open-file throw
dup file-size throw <# #s #> type ." bytes long." cr
close-file throw ;
s" input.txt" .filesize
s" /input.txt" .filesize