Newsgroups: comp.lang.dylan
Path: cantaloupe.srv.cs.cmu.edu!das-news2.harvard.edu!news2.near.net!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!news.sprintlink.net!noc.netcom.net!netcom.com!netcom4!haahr
From: haahr@netcom.com (Paul Haahr)
Subject: Re: what are abstract classes?
In-Reply-To: derway@ndc.com's message of 12 Jun 1995 18:16:36 GMT
To: derway@ndc.com (D. Erway)
Message-ID: <HAAHR.95Jun12231010@netcom4.netcom.com>
Sender: haahr@netcom4.netcom.com
Organization: NETCOM On-line services
References: <v02120d01ac00c0662e79@[192.124.144.135]> <DERWAY.95Jun12111637@alumni.ndc.com>
Date: Mon, 12 Jun 1995 22:10:10 GMT
Lines: 7

Don Erway <derway@ndc.com> wrote:
> So, what is the language mechanism for specifying the default concrete class
> for an abstract class?

define method make (class == <abstract-class>, #rest keys, #key, #all-keys)
  apply(make, <concrete-subclass>, keys)
end method make;
