We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A cell is a single mutable cell used for imperative programming.
(def box (cell 3)) ; #(cell 3) box.type ; (cell) box.get ; 3 (box.set! 5) ; 5 box ; #(cell 5) box.inc! ; 6 box.inc! ; 7 box ; #(cell 7) box.dec! ; 6 box ; #(cell 6)