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