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 t = true;
        System.out.println("t is " + t);

        int x = 10;
        boolean y = (x > 15);
        System.out.println("y is " + y);
    }
}