Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {

    public static void main(String[] args) {
        String str = "this is a test";

        String sub = str.substring(10, 13);

        System.out.println(sub);

        sub = str.substring(10);

        System.out.println(sub);
    }
}
/*
tes
test
*/