Package ch.akuhn.hapax.util

Examples of ch.akuhn.hapax.util.CharStream


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());
    }
View Full Code Here

TOP

Related Classes of ch.akuhn.hapax.util.CharStream

Copyright © 2018 www.massapicom. 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.