mirror of
https://github.com/status-im/nim-confutils.git
synced 2025-01-09 11:45:39 +00:00
10 lines
206 B
Nim
10 lines
206 B
Nim
import
|
|
../confutils
|
|
|
|
cli do (foo: int, bar: string, withBaz: bool, args {.argument.}: seq[string]):
|
|
echo "foo = ", foo
|
|
echo "bar = ", bar
|
|
echo "baz = ", withBaz
|
|
for arg in args: echo "arg ", arg
|
|
|