RosettaCodeData/Task/Reverse-a-string/Wortel/reverse-a-string.wortel
2023-07-01 13:44:08 -04:00

4 lines
132 B
Text

; the @rev operator reverses strings and arrays
@rev "abc" ; returns "cba"
; or the same thing using a pointer expression
!~r "abc"