1: //: com:bruceeckel:simple:List.java
2: // From 'Thinking in Java, 2nd ed.' by Bruce Eckel
3: // www.BruceEckel.com. See copyright notice in CopyRight.txt.
4: // Creating a package.
5: package com.bruceeckel.simple;
7: public class List {
8: public List() {
9: System.out.println(
10: "com.bruceeckel.util.List");
11: }
12: } ///:~