summaryrefslogtreecommitdiff
path: root/python/testData/debug/test_input.py
blob: 5ac9bacbf418a0e5ff52d25833c4687cc37a5f0d (plain)
1
2
3
4
5
6
7
while True:
    promt = "print command > "
    try:
        string = raw_input(promt)
    except :
        string = input(promt)
    print ("command was " + string)