home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gofer230.zip / Progs / Gofer / Docs / hype < prev    next >
Text File  |  1994-06-23  |  3KB  |  62 lines

  1. ------------------------------------------------------------------------------
  2. Gofer 2.28 is an interactive functional programming environment (i.e. an
  3. interpreter) supporting a language based on the draft report for Haskell
  4. version 1.2, including the following features:
  5.  
  6.   o  Lazy evaluation, higher order functions, pattern matching etc...
  7.  
  8.   o  Wide range of built-in types with provision for defining new free
  9.      datatypes and type synonyms.
  10.  
  11.   o  Polymorphic type system with provision for overloading based on
  12.      a system of type classes.
  13.  
  14.   o  Full Haskell 1.2 expression and pattern syntax including lambda,
  15.      case, conditional and let expressions, list comprehensions, operator
  16.      sections, and wildcard, as and irrefutable patterns.
  17.  
  18.   o  Partial implementation of Haskell 1.2 facilities for I/O, enabling
  19.      the use of simple interactive programs and programs reading and writing
  20.      text files.
  21.  
  22.   o  User documentation, sample programs and source code freely available.
  23.  
  24.   o  Supports constructor classes and overloaded monad comprehensions.
  25.  
  26.   o  Simple minded compiler/translator Gofer -> C with runtime system for
  27.      generation of standalone applications.
  28.  
  29.   o  Runs (and originally developed) on PC compatible computers, but
  30.      also works on Sun workstations.  Code should be portable to many
  31.      other kinds of machine.
  32.  
  33. Gofer is intended as an experimental language, particularly where type classes
  34. are involved.  Gofer extends the Haskell type class system in several ways:
  35.  
  36.   o  Type classes with multiple parameters are supported.
  37.  
  38.   o  Instances of type classes may be defined non-overlapping, but otherwise
  39.      arbitrary types.
  40.  
  41.   o  Predicates in contexts may involve arbitrary type expressions, not just
  42.      type variables as in Haskell.
  43.  
  44.   o  Basic approach to dictionary construction is different, based on the
  45.      approach I described in a posting to the Haskell mailing list early in
  46.      Feburary 1991.  The resulting system ensures that all dictionaries are
  47.      constructed before evaluation begins, avoiding repeated construction
  48.      and enabling the shared evaluation of overloaded constants in
  49.      dictionaries.
  50.  
  51. The most significant features of Haskell not currently supported are:
  52. modules, arrays, overloaded numeric constants, default declarations, derived
  53. instances, contexts in datatype definitions.
  54. ------------------------------------------------------------------------------
  55. And just in case you wondered:
  56.  
  57.    The name "Gofer" is not a trademark, registered  or  otherwise,  and
  58.    you are free to mention this name in published material, public  and
  59.    private correspondence, or other documents  without  restriction  or
  60.    obligation.
  61. ------------------------------------------------------------------------------
  62.