mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +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
|
|
|