Skip to content

Instantly share code, notes, and snippets.

(function () {
var alert = System.inform;
var doit = (function (msg) {
alert(msg); // メンバ"alert"が見つかりません
})("hello");
doit();
})();