Diff
Not logged in

Differences From Artifact [36044e05d28ff416]:

To Artifact [e01d02a22ae40e90]:


3 3 * License: NYSL 0.9982 (http://www.kmonos.net/nysl/ 4 4 * 5 5 * Entry point for Polemy interpreter. 6 6 */ 7 7 8 8 import std.stdio; 9 9 import polemy.eval; 10 + 11 +version(unittest) static ~this() 12 +{ 13 + writeln( "***********************" ); 14 + writeln( "* All Tests Passed <3 *" ); 15 + writeln( "*********************** (Press Enter to finish)" ); 16 + readln(); 17 +} 10 18 11 19 void main( string[] args ) 12 20 { 13 - version(unittest) 14 - { 15 - writeln( "***********************" ); 16 - writeln( "* All Tests Passed <3 *" ); 17 - writeln( "*********************** (Press Enter to finish)" ); 18 - readln(); 19 - return; 20 - } 21 21 }