13 lines
62 B
Plaintext
13 lines
62 B
Plaintext
|
|
|
|
fn b() {
|
|
a()
|
|
}
|
|
|
|
fn a() {
|
|
let abc = 123;
|
|
abc
|
|
}
|
|
|
|
|