Ejemplo n.º 1
0
 def version(self, version):
     version = commands.version(version)
     try:
         self.__version
     except AttributeError:
         self.__version = version
         version = None
     self._version = version
Ejemplo n.º 2
0
def main():
	while (1 == 1):
		command = raw_input('Command: ')
		if(command == "help"):
			commands.help()
		elif(command == "exit"):
			print "Exited!"
			exit()
		elif(command == "version"):
			commands.version();
		elif(command == "timer"):
			timertime = input('Enter time: ')
			commands.timer(timertime)
		elif(command == "calculator" or command == "calc"):
			commands.calculator()
		else:
			print "There is no such command!"