RosettaCodeData/Task/Read-entire-file/GAP/read-entire-file.gap
2023-07-01 13:44:08 -04:00

3 lines
118 B
Text

InputTextFile("input.txt");
s := ReadAll(f);; # two semicolons to hide the result, which may be long
CloseStream(f);