Skip to content

Instantly share code, notes, and snippets.

@Morbix
Created August 5, 2020 22:33
Show Gist options
  • Save Morbix/99fb3152507d81808c4825f238cabb40 to your computer and use it in GitHub Desktop.
Save Morbix/99fb3152507d81808c4825f238cabb40 to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
Veiculo f1 = new CarroF1();
f1.acelera(10);
f1.acelera(10);
f1.freia(50);
System.out.println(f1.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment