Files
hakorune/local_tests/test_simple.nyash

9 lines
159 B
Plaintext
Raw Normal View History

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