buildframework/helium/tests/data/pythonTest2.py
changeset 217 0f5e3a7fb6af
parent 181 59bb7c4d6172
child 307 22ecbfc20eb4
child 584 56dd7656a965
child 587 85df38eb4012
equal deleted inserted replaced
181:59bb7c4d6172 217:0f5e3a7fb6af
     1 from optparse import OptionParser
       
     2 
       
     3 def main():
       
     4     parser = OptionParser(usage="%prog VERSION")
       
     5     opts, args = parser.parse_args()
       
     6     input = args[0]
       
     7     print input
       
     8     
       
     9 main()