Files
hakorune/local_tests/test_direct_extern.nyash

12 lines
295 B
Plaintext
Raw Normal View History

# 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
}
}