package BridgePres;

public class BikeShare implements BikeImpl {

    @Override
    public void getBikeReady() {
        System.out.println("===================\n" +
                "   D I V V Y \n" +
                "===================\n" +
                "Choose any bike at Lake Park\n" +
                "Ave / 53rd St station and enter the\n" +
                "following code to unlock it:\n" +
                "12132\n");
    }
}
