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) {
        char c = 'a';

        PrintWriter pw = new PrintWriter(System.out);

        // print string
        pw.println(c);
        pw.println('b');

        // flush the writer
        pw.flush();

    }
}