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) {
        try {
            PrintWriter pw = new PrintWriter(System.out);

            // append chars
            pw.append('H');
            pw.append('e');
            pw.append('l');
            pw.append('l');
            pw.append('o');

            // flush the writer
            pw.flush();

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