9 lines
86 B
Plaintext
9 lines
86 B
Plaintext
fn test(a, b, c) {
|
|
|
|
};
|
|
|
|
fn test2(x, y, z) {
|
|
test(1, 2, 3);
|
|
};
|
|
|
|
test2(1, 2, 3); |