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
Implemented via a flag on variables.
Used with the let special form. A new special form var is added to replace the old use of let.
Implicitly used for bindings.
fn[x]() {
x = 5 # error: assigning to a constant
}