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