OnJava8-Examples/hiding/Dinner.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

14 lines
282 B
Java

//: hiding/Dinner.java
// ©2015 MindView LLC: see Copyright.txt
// Uses the library.
import hiding.dessert.*;
public class Dinner {
public static void main(String[] args) {
Cookie x = new Cookie();
//! x.bite(); // Can't access
}
} /* Output:
Cookie constructor
*///:~