4 lines
92 B
Text
4 lines
92 B
Text
define: #s -> 'hello'.
|
|
inform: s ; ' literal'.
|
|
define: #s1 -> (s ; ' literal').
|
|
inform: s1.
|