Why will this not compile??
From: JS (dsa._at_asdf.com)
Date: 11/27/04
- Next message: Mike B: "Re: Sorting arrays (again)"
- Previous message: Mike B: "Re: Sorting arrays (again)"
- Next in thread: Mike B: "Re: Why will this not compile??"
- Reply: Mike B: "Re: Why will this not compile??"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Next message: Mike B: "Re: Sorting arrays (again)"
- Previous message: Mike B: "Re: Sorting arrays (again)"
- Next in thread: Mike B: "Re: Why will this not compile??"
- Reply: Mike B: "Re: Why will this not compile??"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]