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

        PrintStream ps = new PrintStream(System.out);

        // append our character sequences
        ps.append(csq, 6, 11);
        ps.append(csq, 0, 5);

        // print the result
        ps.flush();
        ps.close();

    }
}