Is there a way to suppress warnings about unused variables?

We have told you ways to get rid of the warning. Warnings appear for a reason. In this case, the reason is that there is stack-space wasted. For each time you rebind that variable, a new and fresh variable on the stack is “created”.

There is no way to turn of warnings in the elixir compiler except for touching either its sources or yours.