---Gosh, that was hard. ;)
// ch03_ex04.javaclass ch03_ex04 {
public static void main( String[] args ) {
int i;
for (i = 1; i <= 100; i++) {
System.out.println( i );
}
}
}
---
13:31 -- Starting Lisp version
13:32 -- Done
---Gosh, that was hard, too. (Look, Mom, my first loop!)
;;;; chapter 3, ex 4
(defun ch3-ex4 ()
(loop for i from 1 to 100
do (print i)))
---