blob: ed58ff02800990e78b02ee63049211e28575d50e [file] [log] [blame]
// Expectation for test:
// main() {
// var g = 1;
//
// var x = g + 3;
// print(x);
// }
function() {
var line = "" + 4;
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);
}
}