Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

12 lines
264 B
Java

//: hiding/dessert/Cookie.java
// Š2015 MindView LLC: see Copyright.txt
// Creates a library.
package hiding.dessert;
public class Cookie {
public Cookie() {
System.out.println("Cookie constructor");
}
void bite() { System.out.println("bite"); }
} ///:~