package rebelsky.drawing; public class SillyPen extends java.io.PrintWriter { public SillyPen() { super(System.out, true); } // SillyPen() public void println(String str) { this.print("HA HA HA HA HA"); this.print(str); this.println(); } } // class SillyPen