---
// ch04_ex03.javaclass ch04_ex04 {
public static void main(String[] args) {
ch04_ex02[] ar = new ch04_ex02[ 10 ];
for (int i = 0; i < ar.length; i++) {
ar[i] = new ch04_ex02("msg " + i);
}
}
}
---
---
;;;; chapter 4, ex 4
(let ((ar (make-array 10
:element-type 'ch04-ex02-class)))
(loop for i below (length ar) do
(setf (aref ar i) (make-instance 'ch04-ex02-class :x i)))
ar)
---