6 lines
91 B
Text
6 lines
91 B
Text
(mut a 5)
|
|
(let foo (fun (bar)
|
|
(set bar 12)))
|
|
(print a) # => 5
|
|
(foo a)
|
|
(print a) # => 5
|