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