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

11 lines
235 B
Text

#lang transd
MainModule : {
_start: (lambda (with s "as⃝df̅"
(textout (reverse s))
// reversing user input
(textout "\nPlease, enter a string: ")
(textout "Input: " (reverse (read s)))
))
}