mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2025-02-23 17:55:49 -06:00
14 lines
243 B
Nim
14 lines
243 B
Nim
|
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
|