/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package debugtest; /** * * @author MalcolmM */ public class Main { private static void p2() { System.out.println("P2 - 1"); System.out.println("P2 - 1"); } /** * @param args the command line arguments */ public static void main(String[] args) { System.out.println("Line 1"); // p2(); System.out.println("Line 2"); } }