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