Greetings everyone, with some of the material I learned (though I had to research how to do random number generation). I created a mini Craps game (it's a dice game). Unfortunately, even though the program compiles, it refuses to run. Here is the error I'm getting:
lamoubeldum@LamouBeldum:~/JavaPrograms/Projects$ java CrapsTest
Exception in thread "main" java.lang.NullPointerException
at CrapsTest.main(CrapsTest.java:12)
lamoubeldum@LamouBeldum:~/JavaPrograms/Projects$
Here is my code, everything compiles just fine:
Is there anything I'm not seeing, maybe you Java Heroes can shed some light on the situation

Thanks!