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