Skip to content

Latest commit

 

History

History
38 lines (20 loc) · 379 Bytes

circular_track.md

File metadata and controls

38 lines (20 loc) · 379 Bytes
from Car import Car
import time
%%HTML
<button id="launcher">Launch Car Simulator</button>
<script src="setupLauncher.js"></script>

Launch Car Simulator

<script src="setupLauncher.js"></script>
def circle(car):
    car.steer(5)
    car.gas(0.50)
    
car = Car()

circle(car)