RosettaCodeData/Task/File-size/Elena/file-size.elena

10 lines
172 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import system'io;
import extensions;
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
public program()
{
console.printLine(File.assign("input.txt").Length);
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
console.printLine(File.assign("\input.txt").Length)
}