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