summaryrefslogtreecommitdiff
path: root/.local/bin/upper
blob: e3d8d4509602579215e67cc22107a0eaafb19851 (plain)
1
2
3
4
5
#!/usr/local/bin/python3
while True:
    userIn = input("> ").upper()
    if userIn == "EXIT": break
    print(userIn)