4 lines
109 B
Text
4 lines
109 B
Text
(let Str1 "First text"
|
|
(prinl Str1 " literal")
|
|
(let Str2 (pack Str1 " literal")
|
|
(prinl Str2) ) )
|