5 lines
159 B
Text
5 lines
159 B
Text
(let immutable 5)
|
|
|
|
(if (= (type immutable) "Number")
|
|
(print "immutable is a number")
|
|
(print (format "immutable is something else. A {}" (type immutable)))
|