#!/bin/python3
# Our team's simple test module
from gpiozero import Robot
import time
robby = Robot(left=(7, 8), right=(9, 10))
robby.forward()
time.sleep(20)
robby.stop()
# Our team's simple test module
a = 1 # this is also a comment
'''
this is also comment
that fits on multiple
lines
:)
'''
# Our team's simple test module
from gpiozero import Robot
import time
robby = Robot(left=(7, 8), right=(9, 10))
robby.forward()
time.sleep(20)
robby.stop()