You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for LET-CONST in the form of a syntactic form:
(let-const ((<var> <expr>) ...) . <exprs>)
The only difference between let-const and let should be let-const should create environments with ConstCells instead of Cells, and ConstCells should not be able to be mutated through SET! (or anything else).
Support for
LET-CONST
in the form of a syntactic form:The only difference between
let-const
andlet
should belet-const
should create environments withConstCell
s instead ofCells
, andConstCell
s should not be able to be mutated throughSET!
(or anything else).The text was updated successfully, but these errors were encountered: