//################################################################ // // Buggy1.java // // CORRECT VERSION // //################################################################ public class Buggy1 { public static void main (String[] args) { String s= new String("John"); System.out.println("My name is " + s); return; } }