Write a main method that runs your program. You can
write this method anywhere. In this example, I'll write my
main method in a class called Main, that has no
other methods.
For example:
public class Main
{
public static void main(String[] args)
{
Game.play();
}
}
The main method must be public static void, and it
must take in an array of strings (and no other parameters).