import std.stdio; 

void print(T)(T value) { 
   writefln("%s", value); 
}

void main() { 
   print(42);  

   print(1.2);

   print("test"); 
}