fn main(args: Array) { if (args[0] == 'test') { println('test'); } else if (args[0] == 'foo') { println('foo'); } else { println('not test'); } }