mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2025-02-23 17:55:49 -06:00
18 lines
269 B
Nim
18 lines
269 B
Nim
|
import std/[strformat]
|
||
|
import hwylterm, hwylterm/hwylcli
|
||
|
|
||
|
type
|
||
|
Color = enum
|
||
|
red, blue, green
|
||
|
|
||
|
# TODO: color should be a required flag by default?
|
||
|
|
||
|
hwylCli:
|
||
|
name "enumFlag"
|
||
|
flags:
|
||
|
color:
|
||
|
T Color
|
||
|
run:
|
||
|
echo fmt"{color=}"
|
||
|
assert args.len == 0
|