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

10 lines
172 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import system'io;
import extensions;
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
2025-08-11 18:05:26 -07:00
Console.printLine(File.assign("input.txt").Length);
2023-07-01 11:58:00 -04:00
2025-08-11 18:05:26 -07:00
Console.printLine(File.assign("\input.txt").Length)
2023-07-01 11:58:00 -04:00
}