Here is my code project for school. I made sure to do everything right, but I still get the same error. Can someone please explain to me what I'm doing wrong?
@NoahJospeh why are you not calling it as main? SammysMotto2 is a class, and it's a static class so that means there is no constructor. You are going to have to, in your code, have: SammysMotto2.main(); instead
"Compiler Exit Status 1"
Here is my code project for school. I made sure to do everything right, but I still get the same error. Can someone please explain to me what I'm doing wrong?

main
?SammysMotto2
is a class, and it's a static class so that means there is no constructor. You are going to have to, in your code, have:SammysMotto2.main();
instead