12 lines
216 B
Plaintext
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
|
|
}
|
|
} |