import server mod = server.problems.load_language('robot', 'en') name = 'Forward 3s' slug = 'Forward 3s' description = '''\
Write a program that would make the robot drive straight forward for 3 seconds and stop
''' hint = { 'mW_init':mod.hint['init'], 'connectMotorLeft':mod.hint['connectMotorLeft'], 'connectMotorRight':mod.hint['connectMotorRight'], 'moveSteering':mod.hint['moveSteering'], 'onForSeconds':mod.hint['onForSeconds'], 'direction':mod.hint['direction']+['''robot.move_steering( 'on_for_seconds', direction=0, ... )
.
robot.move_steering( 'on_for_seconds', direction=0, seconds=3 )
.
The program should: