blob: a8df9d12d709101a452827b4e0f016d0bfc62193 [file] [log] [blame]
// Expectation for test:
// main() {
// var g = 1;
//
// var x = g + 3;
// print(x);
// }
function() {
if (typeof dartPrint == "function")
dartPrint("4");
else if (typeof console == "object" && typeof console.log != "undefined")
console.log("4");
else if (!(typeof window == "object")) {
if (!(typeof print == "function"))
throw "Unable to print message: " + String("4");
print("4");
}
}