mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
11 lines
142 B
JavaScript
11 lines
142 B
JavaScript
|
(function () {
|
||
|
console.log(1);
|
||
|
})();
|
||
|
(function (a) {
|
||
|
console.log(a);
|
||
|
})(2);
|
||
|
(function (b) {
|
||
|
var c = b;
|
||
|
console.log(c);
|
||
|
})(3);
|