7 lines
63 B
Text
7 lines
63 B
Text
let x = 2;
|
|
let y = 3;
|
|
|
|
fn mul(x, y) {
|
|
let a = x*2;
|
|
a * y
|
|
}
|