Dylan is an advanced, object-oriented, dynamic language which supports the RapidDevelopment of programs. When needed, the programmer can later optimize [his or her] programs for more efficient execution by supplying type information to the compiler. Nearly all entities in Dylan (including functions, classes, and basic data types such as integers) are first class objects. Additionally Dylan supports MultipleInheritance, PolyMorphism, MultipleDispatch, KeywordParameterPassing, object introspection, and many other advanced features which make programming a more productive and enjoyable experience. ---- Think CommonLisp with more mainstream syntax (closer to C, Pascal, Python, etc.), and a few warts removed, and you'll be close. ---- Two implementations of Dylan are currently being maintained (2001/09): * '''FunctionalDeveloper''' (former Harlequin Dylan) is a commercial implementation of Dylan for '''Windows''' NT, 98, 95 (alpha version for x86 '''Linux''' also available): : http://www.functionalobjects.com/ * '''GwydionDylan''' is an open-source implementation of Dylan for Unix-compatible systems: : http://www.gwydiondylan.org/ Apple's implementation of Dylan for the Mac OS was abandoned in 1995 soon after its first public release. Other Dylan links: * http://www.cetus-links.org/oo_dylan.html * news:comp.lang.dylan * Advanced Dylan Tutorial: http://www.gwydiondylan.org/gdref/tutorial/tutorial.html * The Dylan Reference manual: at http://www.opendylan.org/gdref.phtml * Dylan Exchange: http://dylanpro.com/DylanExchange.html ---- The following are BrokenLink''''''s. * Dylan / Java Source Code Comparison: http://www.harlequin.com/products/ads/dylan/dvj/dvjframe.html * The Dylan Evangelists: http://dylan.prinz.org/ * Dylan World: http://www-dylan.uchicago.edu/ * The Dylan FAQ-O-Matic: http://www.randomhacks.com/cgi-bin/fom ---- Q: I have a question about Dylan's lack of MessagePassing. How do you deal with situations where you want to pass a message, such as distributed objects or any situation where objects are in a different computer, memory space, or thread? MessagePassing seems really good for this, so what do you do in Dylan? A: Since MessagePassing is equivalent to SingleDispatch, and thus a subset of MultipleDispatch, there's nothing you can't do in Dylan that you can with a message-passing paradigm. And access to objects is using getters and setters exclusively. Calls to these functions can happen transparently over whatever lower-layer implementation. There exist implementations of CORBA, XmlRpc and DOM. ''Someone else's comments seems to have disappeared--do you mean MessagePassing as in MessageBasedConcurrency (a means of communication between two different processes), or MessagePassing as in what Smalltalkers call method calls?). SingleDispatch is equivalent to the latter; it certainly is not equivalent to the former.'' ---- I recently took a close look at Dylan, and was very impressed. Only two things keep me from trying to adopt it for ongoing work: * Thin and declining support -- only two compilers out there that I could see, and the free one is apparently not actively supported on Windows platforms, and hard to use there. * The macro system is very nice, but in some ways not as expressive as C++. It seems like it would be difficult or impossible to build new static types in a macro expansion that's part of an expression. (This is of interest to me because of some of the work that I've been doing lately. See NotesOnaCeePlusPlusRdbmsApi.) Other than that, I think the language designers made exactly the right choices: MultiMethods, a packaging scheme that is not based on classes, powerful integrated template/macro system, flexibility between early and late typing to facilitate tradeoffs between quick programming versus efficient compiled code. Some very weak concerns: The lexical syntax could be a little simpler by omitting funky characters from identifiers, the use of angle brackets in predefined types is kind of annoying, and the unnecessarily long keywords make the language a bit more verbose than necessary. -- DanMuller ''Even if I didn't want identifiers to contain funky characters, I'd allow that just to make everybody put spaces around their operators. I also like type names to look different (it's easier to talk about Gizmo or than gizmo), and I think beats FooBar on a few points, like case sensitivity and extensibility (type names are capitalized, macro names in uppercase -- what about instance variables?).'' ---- CategoryProgrammingLanguage