11 lines
235 B
Text
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)))
|
|
))
|
|
}
|