function main(int argc, str[] argv) {
str name = "World";
if argc > 1 {
name = argv[1];
}
print("Hello, {name}!");
exits("Done");