package factoryMethod; public class Main { public static void main(String[] args) { Vehicle vehicle = new Car(); vehicle.go(); } }