Solace/sample2.nrs
2025-07-07 15:23:00 +02:00

7 lines
63 B
Text

let x = 2;
let y = 3;
fn mul(x, y) {
let a = x*2;
a * y
}