mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
14 lines
201 B
Text
14 lines
201 B
Text
const mod = function() {
|
|
const c = "c";
|
|
const c1 = c;
|
|
class C {
|
|
}
|
|
return {
|
|
c,
|
|
default: C
|
|
};
|
|
}();
|
|
const c = mod;
|
|
const b = "b";
|
|
console.log(b);
|
|
console.log(mod);
|