001    /**
002     * Exercise 4.1 from the book
003     * 
004     * @author Kristian Torp, torp (at) cs (dot) aau (dot) dk
005     * @version 1.0
006     */
007    public class Exercise4_1 {
008            /**
009             * The default constructor.
010             */
011            Exercise4_1() {
012                    System.out.println("Make an object of type Exercise4_1");
013            }
014    
015            /**
016             * The main method that creates and object.
017             */
018            public static void main(String[] args) {
019                    // create an object.
020                    Exercise4_1 cl = new Exercise4_1();
021            }
022    }
023