Package example

Source Code of example.Sandbox

package example;

import ch.akuhn.hapax.util.CharStream;

public class Sandbox {

    public static void main(String[] args) {
        CharStream in = CharStream.fromString("abc");
        System.out.println(in.next());
        System.out.println(in.next());
        System.out.println(in.next());
        System.out.println(in.next());
    }
   
}
TOP

Related Classes of example.Sandbox

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.