hwylterm/tests/cli/clis/posNoMulti.nim

14 lines
243 B
Nim
Raw Normal View History

2025-01-23 17:29:52 -06:00
import std/[strformat]
import hwylterm, hwylterm/hwylcli
hwylCli:
name "positionals"
settings: ExactArgs
args:
first int
second string
third string
run:
echo fmt"{first=}, {second=}, {third=}"
assert args.len == 0