6 lines
143 B
Text
6 lines
143 B
Text
REVERSE
|
|
;Take in a string and reverse it using the built in function $REVERSE
|
|
NEW S
|
|
READ:30 "Enter a string: ",S
|
|
WRITE !,$REVERSE(S)
|
|
QUIT
|