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) {
        String s = "from java2s.com";

        PrintStream ps = new PrintStream(System.out);

        // format a string
        ps.format("This is a %s program", s);

        // flush the stream
        ps.flush();

    }
}