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

4 lines
133 B
Text

[ dup nest? if
[ [] swap witheach
[ nested
swap join ] ] ] is reverse ( x --> x )