Read entire file: Difference between revisions

Content deleted Content added
Klint (talk | contribs)
PureFox (talk | contribs)
m →‎{{header|Wren}}: Changed to Wren S/H
Line 2,269:
For the following script, a file called "input.txt" has been created which contains the string "abcdefghijklmnopqrstuvwxyz".
<syntaxhighlight lang="ecmascriptwren">import "io" for File
 
System.print(File.read("input.txt"))</syntaxhighlight>