blob: 68f024fa0760118864461e6881f662e07d8e6546 [file] [log] [blame]
// Expectation for test:
// foo() { print(42); return 42; }
// main() { return foo(); }
function() {
var line = "" + 42;
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);
}
return 42;
}