9 lines
166 B
Nim
9 lines
166 B
Nim
|
import
|
||
|
../confutils
|
||
|
|
||
|
cli do (foo: int, bar: string, args {.argument.}: seq[string]):
|
||
|
echo "foo = ", foo
|
||
|
echo "bar = ", bar
|
||
|
for arg in args: echo "arg ", arg
|
||
|
|