module max_temp; import std.c.stdio; template stat(T) { T max(T a, T b) { if(a > b) return a; return b; } }