7 lines
124 B
Plaintext
7 lines
124 B
Plaintext
|
|
// Test simple string creation
|
||
|
|
static box Main {
|
||
|
|
main() {
|
||
|
|
local message = "Hello"
|
||
|
|
return message
|
||
|
|
}
|
||
|
|
}
|