Read entire file: Difference between revisions

Content deleted Content added
Myrmidon (talk | contribs)
Miks1965 (talk | contribs)
PascalABC.NET
 
Line 1,648:
=={{header|Pascal}}==
See TStrignList example of [[Read_entire_file#Delphi | Delphi]]
 
=={{header|PascalABC.NET}}==
<syntaxhighlight lang="delphi">
##
var text := ReadAllText('_a.pas',Encoding.UTF8);
Print(text);
</syntaxhighlight>
 
 
=={{header|Perl}}==