RosettaCodeData/Task/File-size/E/file-size.e

4 lines
114 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
for file in [<file:input.txt>, <file:///input.txt>] {
println(`The size of $file is ${file.length()} bytes.`)
}