<H1>Cleanup</H1>
<I>What will the file output.txt contain?</I>

public class Sample
{
  private FileWriter _writer;

  public Sample() throws Exception { _writer =
    new FileWriter("output.txt"); }
  protected void finalize() throws Exception { _writer.close(); }
  public void info(String msg) throws Exception { _writer.write(msg); }

  public static void main(String[] args) throws Exception
  {
    Sample obj = new Sample();
    obj.info("test");
  }
}
