From: Ken A. <kan...@bb...> - 2004-02-16 20:22:46
|
At 08:08 PM 2/14/2004 -0800, david wrote: >can the compile extend classes and override methods, >or do I need to do that with java? The compiler can't do this, but there is dclass/dclass.scm which lets you define Java classes in Scheme. dclass/record.scm lets you define simple "record" classes easily. If you want to implement an interface you can use elf/proxy.scm to use Java Proxy classes. |