Geometry.Net - the online learning center
Home  - Basic_D - Dylan Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 1     1-20 of 104    1  | 2  | 3  | 4  | 5  | 6  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Dylan Programming:     more detail
  1. Programming in Dylan by I. Craig, 1997-04
  2. Dylan Programming: An Object-Oriented and Dynamic Language by Sonya E. Keene, Robert O. Mathews, et all 1996-08
  3. The Dylan Reference Manual: The Definitive Guide to the New Object-Oriented Dynamic Language (Apple Press Series) by Andrew Shalit, David Moon, et all 1996-09-11
  4. Full Impact MacRos: Programming With Full Talk by Dylan B. Ashe, 1992-01
  5. WAP Development with WML and WMLScript (With CD-ROM) by Ben Forta, Dylan Bromby, et all 2000-09-22
  6. Dylan by Graham, 2001-01
  7. HCI International 2007: 12th International Conference, HCI International 2007, with 8 Further Associated Conferences, Beijing, China, July 22-27, 2007, ... (Lecture Notes in Computer Science)

1. Dylan Programming Language
Source, tips, techniques and resources related to the dylan programming language.
http://www.double.co.nz/dylan/
Dylan Programming Language
Last updated on 15 January 2005 Home Introduction Tips and Techniques Projects ... Links
What's New
Functional Developer has now been open sourced. The source code lives in the Gwydion Dylan source code repository and they are currently doing semi-regular snapshots for Win32 and Linux. A full release announcement hasn't been made according to the GD website while they are busy preparing the code so that it is easier to build and modify. Meanwhile, Win32 snapshots and Linux snapshots are available. Functional Developer may be open sourced. From a post by Scott McKay in comp.lang.dylan "I'll spill the beans. We're trying to open-source the whole lot of it, but are working to get it in shape such that someone besides a Fun-O hacker can build it." Long time no update. I'm still using Dylan, specifically Functional Developer . I have some new libraries and notes to upload when I get some time to tidy them up and organise them. I've been busy running two Rhee Taekwondo clubs recently. I've run the Karori club for a couple of years and have recently opened Whitby. Once Whitby gets more settled I'll have more time and will carry on updating this site. For those interested, a

2. PC AI - Dylan Programming Language
Contains links to information, vendors, books, and articles about Dylan.
http://www.pcai.com/web/ai_info/pcai_dylan.html
Where Intelligent Technology Meets the Real World Home Contents Search News ... Contact PC AI
Dylan Programming Language
Overview : Dylan is a new object-oriented dynamic language (OODL) being developed by Apple. This language development effort has the goal of developing a practical tool for writing mainstream commercial applications. The intent is to combine the best qualities of static languages (small, fast programs) with the best qualities of dynamic languages (rapid development, code that's easy to read, write and maintain). It differs from C++ in many important ways that makes it powerful and flexible. Dylan as a number of features that distinguish it from C++ including:
  • automatic memory management clean, consistent syntax fully and consistently object-oriented model dynamic as well as static type checking support for incremental compilation first-class functions and classes
  • Glossary Link - Dylan Programming Language SUBMIT YOUR SITE To C++ Programming Language To Forth Programming Language
    Dylan Information on the Internet
    Different Dylan Implementations A archive for Dylan Implementations.

    3. The Marlais Dylan Interpreter
    a straightforward implementation of a programming language strongly resembling the dylan programming language.
    http://www.cis.ufl.edu/~jnw/Marlais/
    Last Edited: Mon Feb 12 08:13:12 1996 by jnw (Joseph N. Wilson) on aviator.cis.ufl.edu
    The Marlais Dylan Interpreter
    Painting of Dylan Thomas by Rupert Shepard. The Marlais Dylan interpreter is a straightforward implementation of a programming strongly resembling the Dylan programming language, an object-oriented dynamic language . It is copylefted software that was originally developed by Brent Benson of Harris Computer Systems ( Brent.Benson@mail.csd.harris.com Information about the Dylan language and related projects at Apple Computer is available from Apple's Developer Products Group web page
    Marlais Version 0.5.x
    This version, whose primary author is jnw@cis.ufl.edu , is available for anonymous ftp from internet hosts. Many features were added since the last version. A recap of the differences between the language supported by marlais-0.5 and Dylan is available to be browed.
    MacMarlais
    Patrick Beard has produced a Macintosh implementation of the Marlais interpreter that supports various extensions and provides an extremely nice user interface for the Mac.
    Other Dylan Implementations
    The CMU Gwydion project has produced the Mindy (Mindy Is Not Yet Dylan) dylan compiler.

    4. Cetus Links 16604 Links On Objects And Components / Dylan
    Books. dylan programming (Neal Feinberg et al.) Programming in Dylan (I.D. Craig) The Dylan Reference Manual (Andrew Shalit) Projects
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    5. Creatures 3
    Most of the programs below were written in the dylan programming language usingthe Functional Developer development environment.
    http://www.double.co.nz/creatures/creatures3/
    CDR
    Creatures 3
    The following items are available relating to Creatures 3:
    Programs
    Most of the programs below were written in the Dylan programming language using the Functional Developer development environment. The basic edition of Functional Developer is free for download and Dylan is an easy to learn language if you're looking for a nice development system for writing Creatures utilities. See my Dylan page if you want details on obtaining versions of Functional Developer. Source code for some of the utilities written in Dylan are available in the Developer Information section C3 Genome Injector (Version 1.1 - 55KB - 21/05/2000)
    A program that will let you inject a .gen file into the game as an egg. The egg will hatch naturally or can be hatched in the incubator and the resultant creature will reflect the genome used to create it. A useful program to use in conjunction with the Genetics Editor . Requires the Functional Developer run time library C3 LobeStudy (Version 1.3 - 70KB - 21/05/2000)

    6. Dylan Exchange
    Exchange of infomation on the dylan programming Language
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    7. Dylan Programming
    An introduction to Dylan including information on Dylan training courses and adylan programming FAQ.
    http://www.geocities.com/dylan_programmer/
    Dylan Programming
    Dylan ( Dy namic lan guage ) is a machine-compiled functional object-oriented language that uses multimethods (among other things) to simplify the programmers' tasks. It is available on Windows from Functional Objects and for the UNIX, Be and Mac platforms (in an experimental form and under active development) from Gwydion Dylan under the GNU license. Dylan programmers discuss issues in the comp.lang.dylan newsgroup. What is programming in Dylan like? Dylan, like other object-oriented programming languages (OOPLs), has classes, objects, functions and data. But what separates Dylan from most other well-known OOPLs is that it combines covariant and contravariant inheritance. "Balderdash!" you exclaim; what does this mean? Dylan allows you to associate functions with classes without damaging the preexisting class interface . This allows you to modify behavior of built-in classes, of your own classes, and classes that you do not have the source code. In other words, Dylan incorporates the Visitor(331) design pattern directly and naturally.
    Explanation
    Traditional OOPLs have freed programmers from many constraints of procedural-style programming. But still, there's now a need for even more flexibility. Tim Sweeney, the developer of the Unreal engine, discusses software development and constraints up to now in

    8. Gwydion Dylan Overview
    Our current release is a technology preview, suitable for learning the dylan programming language and building commandline applications.
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    9. Dylan Programming FAQ
    Several; the best two are dylan programming (a very good tutorial book) byFeinberg, Keene, Mathews, and Withington, and the Dylan Reference Manual by
    http://www.geocities.com/dylan_programmer/FAQ.html
    Dylan Programming
    Frequently Asked Questions (FAQ)
    General
    (see also the cetus-links
  • What is Dylan?
    Go to www.gwydiondylan.org for a good summary of the language. Basically, Dylan is a Functional Object-Oriented Language that has (among other things) dispatch to methods based on multiple arguments, higher order functions, multiple inheritance, hygenic macro system, and a clearer and cleaner separation of types and classes.
  • Does Dylan work on my platform, and where can I get it?
    Yes. A fully developed and supported version is available for Windows from Functional Objects . Other platforms may look at the Gwydion Dylan web site for binaries (so far Mac, Be, Linux on intels, Sun Sparcs, HP-UX and Cygnus (linux on Windows)).
  • What books about Dylan are available?
    Several; the best two are Dylan Programming (a very good tutorial book) by Feinberg, Keene, Mathews, and Withington, and the Dylan Reference Manual by Shalit, Moon, and Starbuck. Both are available from Functional Objects
  • Are there any on-line tutorials?
    Yes, the two that come to mind are:
  • 10. Functional Objects, Inc.
    a sophisticated dynamic objectoriented software development environment, bringing the power of the dylan programming language to the Windows
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    11. Dylan Programming Language
    Source, tips, techniques and resources related to the dylan programming language.
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    12. The Marlais Dylan Interpreter
    a straightforward implementation of a programming language strongly resembling the dylan programming language.
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    13. Dylan Programming: Dylan Programming
    dylan programming Cover Open the book
    http://www.gwydiondylan.org/books/dpg/
    Open the book... Open the book...

    14. PC AI - Dylan Programming Language
    Services. Contact PC AI dylan programming Language Overview Dylan is a new objectoriented dynamic language (OODL) being developed by Apple.
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    15. Dylan Programming
    An introduction to Dylan including information on Dylan training courses and a dylan programming FAQ.
    http://www.geocities.com/dylan_programmer/index.html
    Dylan Programming
    Dylan ( Dy namic lan guage ) is a machine-compiled functional object-oriented language that uses multimethods (among other things) to simplify the programmers' tasks. It is available on Windows from Functional Objects and for the UNIX, Be and Mac platforms (in an experimental form and under active development) from Gwydion Dylan under the GNU license. Dylan programmers discuss issues in the comp.lang.dylan newsgroup. What is programming in Dylan like? Dylan, like other object-oriented programming languages (OOPLs), has classes, objects, functions and data. But what separates Dylan from most other well-known OOPLs is that it combines covariant and contravariant inheritance. "Balderdash!" you exclaim; what does this mean? Dylan allows you to associate functions with classes without damaging the preexisting class interface . This allows you to modify behavior of built-in classes, of your own classes, and classes that you do not have the source code. In other words, Dylan incorporates the Visitor(331) design pattern directly and naturally.
    Explanation
    Traditional OOPLs have freed programmers from many constraints of procedural-style programming. But still, there's now a need for even more flexibility. Tim Sweeney, the developer of the Unreal engine, discusses software development and constraints up to now in

    16. Dylan Bei CoderLinks.de ASP, Assembler, BASIC, Beta, C, C ++
    Details zur Seite Link defekt dylan programming Language. Technische Tipps und Tricks zu Dylan
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    17. Cseng.aw.com/bookdetail.qry?ISBN=0-201-47976-1&
    Dylan ExchangeExchange of infomation on the dylan programming Language. dylan programmingAn ObjectOriented and Dynamic Language Dylan Rerference Manual by Andrew
    http://cseng.aw.com/bookdetail.qry?ISBN=0-201-47976-1&ptype=0

    18. Procedural Dylan
    programs in Dylan. Dylan is promoted as an objectoriented, dynamic language, but it also offers a rich set of constructs for programming in
    http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

    19. Mac And PowerPC Programming Info
    Dylan is an object oriented dynamic programming language developed at Apple. dylan programming An ObjectOriented and Dynamic Language
    http://www.dylanpro.com/outline.html
    Some places to go...

    20. BYTE.com > BYTE Columns
    Review of dylan programming Language, by Martin Heller.
    http://www.byte.com/column/BYT20000601S0003
    Member Login LOG IN
    Forgot your password?

    Registration FAQ
    What are the ... green links
    Archives Columns
    Features

    Print Archives 1994-1998
    Special BYTE Digest
    Michael Abrash's
    Graphics Programming Black Book
    101 Perl Articles
    About Us How to Access BYTE.com
    Write to BYTE.com

    Advertise with BYTE.com

    Newsletter Free E-mail Newsletter from BYTE.com Email Address First Name Last Name If available, would you like to receive your email in HTML format? Yes No BYTE Digest BYTE Digest editors every month analyze and evaluate the best articles from Information Week EE Times Dr. Dobb's Journal Network Computing Sys Admin Find out more Jump to... Columns: Advanced Software and Technologies BYTE Media Lab Chaos Manor Conference Reports Features Free Features Gigglebytes Letters to BYTE.com Mr. Computer Language Person New Products Op/Ed Portable Computing Serving with Linux The Upgrade Advisor HOME ABOUT US ARCHIVES CONTACT US ... REGISTER Free Registration to CMP's Developer Network Required. BYTE.com > BYTE Columns
    Current Columns

    A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

    Page 1     1-20 of 104    1  | 2  | 3  | 4  | 5  | 6  | Next 20

    free hit counter