//hello4.java import java.io.*; public class hello4 { public static boolean debugging = true; public static void main(String[] args) throws IOException { talk("Hello World"); dbg_pause(); } protected static void talk( String text ) { System.out.println("Talk-Text: " + text); } // Encoding of Burst solution to using VJ++ for Hello World protected static void dbg_pause()throws IOException { if (debugging) System.in.read(); } }