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
With the above commit, is there a way that I can redefine an ill-defined variable in the repl? say
>=> x = 1
>=> y = x' + 1 -- oops I got a typo. error: variable not in scope: x'. That's fine
>=> y = x + 1 -- would like to correct it, but now: variable already defined: y
The text was updated successfully, but these errors were encountered:
7b09688
With the above commit, is there a way that I can redefine an ill-defined variable in the repl? say
The text was updated successfully, but these errors were encountered: