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) {
        long x = 1234567890l;
        try {

            PrintStream ps = new PrintStream(System.out);

            // print long
            ps.print(x);

            // flush the stream
            ps.flush();

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