mirror of
https://github.com/status-im/nim-confutils.git
synced 2025-02-12 20:16:30 +00:00
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
|
|
|