mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2025-02-23 17:55:49 -06:00
13 lines
226 B
Nim
13 lines
226 B
Nim
|
import std/[strformat]
|
||
|
import hwylterm, hwylterm/hwylcli
|
||
|
|
||
|
hwylCli:
|
||
|
name "positionals"
|
||
|
args:
|
||
|
first seq[string]
|
||
|
second string
|
||
|
third string
|
||
|
run:
|
||
|
echo fmt"{first=}, {second=}, {third=}"
|
||
|
echo fmt"{args=}"
|