Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { boolean bool = false; try { PrintWriter pw = new PrintWriter(System.out); // print boolean pw.println(bool); pw.println(true); // flush the writer pw.flush(); } catch (Exception ex) { ex.printStackTrace(); } } }