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
Say, you're prototyping some code or doing some quick calculations, those warnings are not helpful:
rusti> let x = 42;
<anon>:35:4: 35:7 warning: unused variable: `x`
<anon>:35 let x = 42;
^~~
()
rusti> let y = x + 42;
<anon>:37:4: 37:7 warning: unused variable: `y`
<anon>:37 let y = x + 42;
^~~
()
rusti> y
84
The text was updated successfully, but these errors were encountered:
Say, you're prototyping some code or doing some quick calculations, those warnings are not helpful:
The text was updated successfully, but these errors were encountered: