Files
hakorune/local_tests/test_simple_string.hako

7 lines
124 B
Plaintext

// Test simple string creation
static box Main {
main() {
local message = "Hello"
return message
}
}