blob: 5ac9bacbf418a0e5ff52d25833c4687cc37a5f0d [file] [log] [blame]
Tor Norbye1aa2e092014-08-20 17:01:23 -07001while True:
2 promt = "print command > "
3 try:
4 string = raw_input(promt)
5 except :
6 string = input(promt)
7 print ("command was " + string)