public class Methods { public static void main(String [] args) { System.out.println("Let's call a method!"); foo(); System.out.println("Now we're in the main method!"); } public static void foo() { System.out.println("Now we're in the foo method!"); } }