4 lines
65 B
Text
4 lines
65 B
Text
str = "world!"
|
|
put "Hello " before str
|
|
put str
|
|
-- "Hello world!"
|
str = "world!"
|
|
put "Hello " before str
|
|
put str
|
|
-- "Hello world!"
|