Files
hakorune/test_simple.nyash
2025-08-14 08:56:39 +00:00

9 lines
159 B
Plaintext

# Simple test without external calls
static box Main {
init { result }
main() {
me.result = "Simple test"
return me.result
}
}