2025-01-23 17:29:52 -06:00
|
|
|
import std/[strformat]
|
|
|
|
import hwylterm, hwylterm/hwylcli
|
|
|
|
|
|
|
|
hwylCli:
|
|
|
|
name "positionals"
|
2025-01-23 19:25:09 -06:00
|
|
|
positionals:
|
2025-01-23 17:29:52 -06:00
|
|
|
first int
|
|
|
|
second string
|
|
|
|
third string
|
|
|
|
run:
|
|
|
|
echo fmt"{first=}, {second=}, {third=}"
|