OnJava8-Examples/hiding/Dinner.java

14 lines
282 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: hiding/Dinner.java
// <20>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
*///:~