Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.IOException;

public class Main {

    public static void main(String[] arg) {
        System.out.println("Type something");
        try {
            System.in.read();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}