|
|
|
|
|
by delian66
943 days ago
|
|
What you describe is exactly what the V compiler does. It produces warnings for unused variables, and warnings become errors, when you want to compile a production executable with -prod , so you can get both the benefit of prototyping without losing your flow, and you are still required to cleanup after that, when you are finished, before release. |
|