blob: 92a19696af7b3ae60b8cd7ef9b7f2c36f7231a33 [file] [log] [blame]
// Expectation for test:
// // Constant folding
// main() {
// print('A'.codeUnitAt(0));
// }
function() {
var line = "" + 65;
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);
}
}