Reverse a string: Difference between revisions

Content deleted Content added
Hansoft (talk | contribs)
Non-locals Forth version added
Added REXX sample
Line 602: Line 602:


REBOL/View 2.7.6.3.1 14-Mar-2008 does not handle Unicode strings. This is planned for REBOL 3.
REBOL/View 2.7.6.3.1 14-Mar-2008 does not handle Unicode strings. This is planned for REBOL 3.

=={{header|REXX}}==
<lang rexx>say reverse('asdf')</lang>

Output:
<pre>fdsa</pre>


=={{header|Ruby}}==
=={{header|Ruby}}==