@@ -6,16 +6,16 @@ */ import std.stdio; import polemy.eval; + +version(unittest) static ~this() +{ + writeln( "***********************" ); + writeln( "* All Tests Passed <3 *" ); + writeln( "*********************** (Press Enter to finish)" ); + readln(); +} void main( string[] args ) { - version(unittest) - { - writeln( "***********************" ); - writeln( "* All Tests Passed <3 *" ); - writeln( "*********************** (Press Enter to finish)" ); - readln(); - return; - } }