error in methode main

hello,

i'm learning java with java with bluej.

at the end of the book we learn how to start a game without any other program.

but it won't work.

my methode main:

publicstaticvoid main(String[] args)

{

Game game =new Game();

game.start();

}

greets, reefclaw

[513 byte] By [reefclawa] at [2007-11-26 14:52:12]
# 1
> public static void main(String[] args)>{>Game game = new Game();>game.start();> }What's the "doesn't work" here? Maybe the start() method doesn't exist?I am guessing it's NoClassDefFoundError.
ansi-boya at 2007-7-8 8:40:27 > top of Java-index,Java Essentials,New To Java...
# 2
Please try following the Sun Java Tutorial, starting with the Getting Started section, here: http://java.sun.com/docs/books/tutorial/Hopefully you'll have better luck with it.
ChuckBinga at 2007-7-8 8:40:27 > top of Java-index,Java Essentials,New To Java...
# 3
the problem was indeed that the methode start did not exist.(i hate that book i have to use).thank you for helping me out.greets, reefclaw
reefclawa at 2007-7-8 8:40:27 > top of Java-index,Java Essentials,New To Java...