Reverse words in a string: Difference between revisions

no edit summary
(Added Easylang)
No edit summary
 
Line 2,943:
end.
</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}}==
4

edits