mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2025-02-23 09:45:50 -06:00
15 lines
191 B
Nim
15 lines
191 B
Nim
|
import std/[strformat]
|
||
|
import hwylterm, hwylterm/hwylcli
|
||
|
|
||
|
type
|
||
|
Color = enum
|
||
|
red, blue, green
|
||
|
|
||
|
hwylCli:
|
||
|
name "enumFlag"
|
||
|
flags:
|
||
|
color:
|
||
|
T Color
|
||
|
run:
|
||
|
echo fmt"{color=}"
|