Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {

    public static void main(String[] args) {

        Boolean blnObj1 = new Boolean(true);
        Boolean blnObj2 = new Boolean("false");
        System.out.println(blnObj1);
        System.out.println(blnObj2);
    }
}
/*
true
false
*/