Why will this not compile??

From: JS (dsa._at_asdf.com)
Date: 11/27/04


Date: Sat, 27 Nov 2004 00:29:58 +0100

public class DrawArt
{ public static void main(String[] args)
  { AsciiArtWriter writer = new AsciiArtWriter();
    writer.printBee();
    System.out.println("This is a test.");
    writer.printButterfly();
    writer.printBee();
  }
}

When I try to compile the above I get the fail:

Error: cannot resolve symbol
symbol : class AsciiArtWriter
location: class DrawArt

Can somone help?

JS