9 lines
189 B
Plaintext
9 lines
189 B
Plaintext
fn main(args: Array<String>) {
|
|
if args[0] == 'test' {
|
|
println('test');
|
|
} else if args[0] == 'foo' {
|
|
println('foo');
|
|
} else {
|
|
println('not test');
|
|
}
|
|
} |