/*  Exploring Languages with Interpreters and Functional Programming
    Copyright (C) 2018, H. Conrad Cunningham

1234567890123456789012345678901234567890123456789012345678901234567890

    2018-05-29: Recreated from book Chapter 2

    javac Counting.java
    java Counting

*/

public class Counting {

    public static void main(String[] args) {
        int count =  0 ;
	int maxc  = 10 ;
	while (count <= maxc) {
		System.out.println(count) ;
		count = count + 1 ;
	}
    }
 
}
