Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { String s = "Hello"; try { PrintWriter pw = new PrintWriter(System.out); // write strings pw.write(s); pw.write(" World"); // flush the writer pw.flush(); } catch (Exception ex) { ex.printStackTrace(); } } }