MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

public class MainClass {

    public static void main(String[] arg) {
        String text = "To be or not to be";
        char[] textArray = text.toCharArray();

        for (char ch : textArray) {
            System.out.println(ch);

        }
    }

}