---As for the Lisp version, I think neither I nor you would learn anything from it.
// ch04_ex11.java
// I ran this code, and saw no message. Obviously gc didn't run.class ch04_ex11 {
int i;public void finalize() {
System.out.println( "Finalizing object." );
}public static void main(String[] args) {
ch04_ex11 obj = new ch04_ex11();
}
}
---