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
Rewrite let a = 14; foo(a); to foo(14). If variable is declared and only used once, that always be a correct rewrite. Goal: Reduce duplication on stack while allowing for readable source code.
The text was updated successfully, but these errors were encountered:
let a = 14; foo(a);
tofoo(14)
. If variable is declared and only used once, that always be a correct rewrite. Goal: Reduce duplication on stack while allowing for readable source code.The text was updated successfully, but these errors were encountered: