Get rid of trace prefix when printing

This commit is contained in:
2020-11-28 16:37:32 -07:00
parent 0e8a52ff17
commit 23b978740b

View File

@@ -84,7 +84,11 @@ class Prelude {
}
public static function print(v:Any) {
#if (sys || hxnodejs)
Sys.println(v);
#else
trace(v);
#end
return v;
}
}