So I just started coding a Java program I\'m writing and it\'s telling me that my global variables need to be static. I don\'t understand why it\'s telling me this because I
It is complaining becos the main method is static and you trying to access it directly. If you create a an instance of your class PlannerMain you can access without any problem.