mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
16 lines
207 B
Python
16 lines
207 B
Python
from argenta.command import Flags, Flag
|
|
|
|
flags = Flags([
|
|
Flag("first"),
|
|
Flag("second"),
|
|
Flag("third")
|
|
])
|
|
|
|
print(flags[0].name)
|
|
# first
|
|
|
|
print(flags[1].name)
|
|
# second
|
|
|
|
print(flags[2].name)
|
|
# third |