Templest
A single procedural macro to make temporary variables easier. Code example:
use temp;
This code example prints 10
to the console.
If we add a new temporary variable, after we define the first one as 10, and define that as 20, than 20 will be printed.
use temp;
This new code example will print 20
to the console.