from Control import *

#Creating object 'control' of 'Control' class.
control=Control()

#Using the forWard function, let the robot dog move forward five steps and keep standing.
for i in range(5):
	control.forWard()
	#time.sleep(0.5)
control.stop()
