// retoor <retoor@molodetz.nl>
|
|
|
|
import "argparse" for ArgumentParser
|
|
|
|
var parser = ArgumentParser.new()
|
|
|
|
var args = parser.parseArgs(["extra"]) // expect runtime error: Unexpected argument: extra
|
// retoor <retoor@molodetz.nl>
|
|
|
|
import "argparse" for ArgumentParser
|
|
|
|
var parser = ArgumentParser.new()
|
|
|
|
var args = parser.parseArgs(["extra"]) // expect runtime error: Unexpected argument: extra
|