mirror of
https://github.com/denoland/deno.git
synced 2025-03-11 14:47:26 -04:00
7 lines
93 B
Text
7 lines
93 B
Text
const a = function() {
|
|
const a = "a";
|
|
return {
|
|
a
|
|
};
|
|
}();
|
|
console.log(a);
|