This is one of my first assignments for my CS1 class. I realize it may be very simple, but even though I have typed in the code EXACTLY as it should be I keep getting "GameLauncher.java:12: error: cannot find symbol". I don't understand what I've done wrong in line 12 that makes this error.
here is the program exactly as I've typed it. please help.
/**
*@author censored
*@version 2011.08.26.01
*@since 2011.08.26
*Program00
*/
public class GameLauncher
{
public static void main(String[] args)
{
GuessGame game = new GuessGame();
game.run();
}
}