Read entire file: Difference between revisions

Content deleted Content added
PureFox (talk | contribs)
m →‎{{header|Wren}}: Changed to Wren S/H
Myrmidon (talk | contribs)
Line 2,066:
 
=={{header|Standard ML}}==
<syntaxhighlight lang="sml">fun readFile path =
(* string -> string *)
fun readFile path =
(fn strm =>
TextIO.inputAll strm before TextIO.closeIn strm) (TextIO.openIn path)</syntaxhighlight>
</syntaxhighlight>
 
=={{header|Stata}}==