// retoor <retoor@molodetz.nl>
import "argparse" for ArgumentParser
var parser = ArgumentParser.new()
parser.addArgument("-i", {"long": "--include", "action": "append"})
var args = parser.parseArgs(["-i", "foo", "-i", "bar", "--include", "baz"])
System.print(args["include"].count) // expect: 3
System.print(args["include"][0]) // expect: foo
System.print(args["include"][1]) // expect: bar
System.print(args["include"][2]) // expect: baz