RosettaCodeData/Task/String-concatenation/Slate/string-concatenation.slate
2023-07-01 13:44:08 -04:00

4 lines
92 B
Text

define: #s -> 'hello'.
inform: s ; ' literal'.
define: #s1 -> (s ; ' literal').
inform: s1.