blob: 92ba7b07b7a5beafafd3d0768285c57588a2cb51 [file] [log] [blame]
// Expectation for test:
// set foo(x) { print(x); }
// main() { foo = 42; }
function() {
if (typeof dartPrint == "function")
dartPrint("42");
else if (typeof console == "object" && typeof console.log != "undefined")
console.log("42");
else if (!(typeof window == "object")) {
if (!(typeof print == "function"))
throw "Unable to print message: " + String("42");
print("42");
}
}