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