Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/5e079e4e70ad89d67953b865fbae2f20 to your computer and use it in GitHub Desktop.
Save ssougnez/5e079e4e70ad89d67953b865fbae2f20 to your computer and use it in GitHub Desktop.
import { Driver } from "./driver";
import { Grid } from "./grid";
const alonso = new Driver("Fernando", "Alonso");
const hamilton = new Driver("Lewis", "Hamilton");
const vettel = new Driver("Sebastian", "Vettel");
const grid = new Grid(alonso, hamilton, vettel);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment