blob: 5c2052022f858fb200773c775ae392d5d1aec034 [file] [log] [blame]
import subprocess
print("What's your favorite language?")
result = subprocess.run(["gum", "choose", "Go", "Python"], stdout=subprocess.PIPE, text=True)
print(f"I like {result.stdout.strip()}, too!")