
/**
 * It demonstrates input facilities using SimpleInput class.
 *
 * @author Ageenko
 */
public class Test1 {
    public static void main(String[] args) {
        int test;
        do {
            test = SimpleInput.getInt("Input number please (0 for exit):");
            System.out.println("User input: " + test);
        } while (test != 0);
        System.out.println("Exiting");
        System.exit(0);
    }
}
