Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.*;

public class Main {

    public static void main(String[] args) {
        boolean bool = false;
        try {

            PrintWriter pw = new PrintWriter(System.out);

            // print a boolean
            pw.print(true);

            // change the line
            pw.println();

            // print another boolean
            pw.print(bool);

            // flush the writer
            pw.flush();

        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}