Files
hakorune/examples/simple_test.hako

12 lines
216 B
Plaintext

// Simple test without await
static box Main {
main() {
local x, y, result
x = 10
y = 20
result = x + y
print("Result: " + result.toString())
return result
}
}