Files
2026-06-24 18:10:41 -04:00

13 lines
323 B
Python

from untitled import ui
def options():
while True:
match ui.select("Please choose an option:", ["Save", "Save and quit", "Back"]):
case "Back":
return "back"
case "Save":
return "save"
case "Save and quit":
return "savequit"