mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
13 lines
174 B
JavaScript
13 lines
174 B
JavaScript
|
function f1() {
|
||
|
const a = "X";
|
||
|
return a + a;
|
||
|
}
|
||
|
function f2() {
|
||
|
const aa = "X";
|
||
|
return aa + aa;
|
||
|
}
|
||
|
function f3() {
|
||
|
const aaa = "X";
|
||
|
return aaa + aaa;
|
||
|
}
|