blob: 745bc50ccfb1496c0d89529e60f55ddec799eb93 [file] [log] [blame]
// Expectation for test:
// main() {
// print(new DateTime.now().isBefore(new DateTime.now()));
// }
function() {
var line = H.S(Date.now() < Date.now());
if (typeof dartPrint == "function")
dartPrint(line);
else if (typeof console == "object" && typeof console.log != "undefined")
console.log(line);
else if (!(typeof window == "object")) {
if (!(typeof print == "function"))
throw "Unable to print message: " + String(line);
print(line);
}
}