13 lines
102 B
Plaintext
13 lines
102 B
Plaintext
fn test(a, b, c) {
|
|
|
|
};
|
|
|
|
fn test2() {
|
|
test(1, 2, 3);
|
|
};
|
|
|
|
fn test3() {
|
|
test2();
|
|
};
|
|
|
|
test3(); |