Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { String s = "from java2s.com"; PrintWriter pw = new PrintWriter(System.out); // print string pw.println(s); pw.println("World"); // flush the writer pw.flush(); } }