12 lines
295 B
Plaintext
12 lines
295 B
Plaintext
|
|
# Test direct external calls pattern
|
||
|
|
static box Main {
|
||
|
|
init { result }
|
||
|
|
|
||
|
|
main() {
|
||
|
|
# Direct external call (this should trigger ExternCall)
|
||
|
|
console.log("Direct console call test")
|
||
|
|
|
||
|
|
me.result = "Direct call demo completed"
|
||
|
|
return me.result
|
||
|
|
}
|
||
|
|
}
|