RosettaCodeData/Task/Read-entire-file/Amazing-Hopper/read-entire-file.hopper
2023-07-01 13:44:08 -04:00

7 lines
109 B
Text

#include <hopper.h>
main:
s=""
load str ("archivo.txt") (s)
println ( "File loaded:\n",s )
exit(0)