7 lines
84 B
Text
7 lines
84 B
Text
|
|
(let s "hello")
|
||
|
|
(print (+ s " world!"))
|
||
|
|
|
||
|
|
(let w " there")
|
||
|
|
(let v (+ s w))
|
||
|
|
(print v)
|