Reverse words in a string: Difference between revisions

Content added Content deleted
(Added Easylang)
No edit summary
 
Line 2,943: Line 2,943:
end.
end.
</syntaxhighlight>
</syntaxhighlight>

=={{header|PascalABC.NET}}==
PascalABC.NET 3.9.0
<syntaxhighlight lang="delphi">

##
var s:='Hey you, Bub!';
s.ToWords.Reverse.Print;

</syntaxhighlight>
{{out}}
<pre>
Bub! you, Hey
</pre>


=={{header|Perl}}==
=={{header|Perl}}==