9 lines
168 B
Plaintext
9 lines
168 B
Plaintext
// Simple Nyash program for WASM testing
|
|
static box Main {
|
|
main() {
|
|
local result
|
|
result = 42 + 8
|
|
print(result)
|
|
return result
|
|
}
|
|
} |