RosettaCodeData/Task/File-size/Lasso/file-size.lasso

10 lines
185 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
// local to current directory
local(f = file('input.txt'))
handle => { #f->close }
#f->size
// file at file system root
local(f = file('//input.txt'))
handle => { #f->close }
#f->size