fbpx
Wikipedia

EuLisp

EuLisp is a statically and dynamically scoped Lisp dialect developed by a loose formation of industrial and academic Lisp users and developers from around Europe. The standardizers intended to create a new Lisp "less encumbered by the past" (compared to Common Lisp), and not so minimalist as Scheme. Another objective was to integrate the object-oriented programming paradigm well. It is a third-generation programming language.

EuLisp
Paradigmmulti-paradigm: functional, procedural, meta, object-oriented
FamilyLisp
First appeared1990; 33 years ago (1990)
Preview release
0.991[1] / 2010; 13 years ago (2010)
Typing disciplinestrong, dynamic
Scopestatic and dynamic
OSLinux
Filename extensions.em
Major implementations
EuXLisp,[2] Youtoo,[2] Eu2C[2]
Influenced by
Common Lisp, InterLisp, LeLisp, Lisp/VM, Scheme, T, CLOS, ObjVlisp, Oaklisp, MicroCeyx, MCS, Standard ML, Haskell
Influenced
Dylan, ISLISP, Evelin

Origin edit

The language definition process first began in a meeting in 1985 in Paris and took several years. The complete specification and a first implementation (interpreted-only) were made available in 1990.

1958 1960 1965 1970 1975 1980 1985 1990 1995 2000 2005 2010 2015 2020
 LISP 1, 1.5, LISP 2(abandoned)
 Maclisp
 Interlisp
 MDL
 Lisp Machine Lisp
 Scheme  R5RS  R6RS  R7RS small
 NIL
 ZIL (Zork Implementation Language)
 Franz Lisp
 Common Lisp  ANSI standard
 Le Lisp
 MIT Scheme
 XLISP
 T
 Chez Scheme
 Emacs Lisp
 AutoLISP
 PicoLisp
 Gambit
 EuLisp
 ISLISP
 OpenLisp
 PLT Scheme  Racket
 newLISP
 GNU Guile
 Visual LISP
 Clojure
 Arc
 LFE
 Hy

Distinguishing features edit

Its main traits are that it is a Lisp-1 (no separate function and variable namespaces), has a Common Lisp Object System (CLOS) style generic-function type object-oriented system named The EuLisp Object System (TELOS) integrated from the ground up, has a built-in module system, and is defined in layers to promote the use of the Lisp on small, embedded hardware and educational machines. It supports continuations, though not as powerfully as Scheme. It has a simple lightweight process mechanism (threads).

Summary edit

Implementations edit

An early implementation of EuLisp was Free and Eventually Eulisp (FEEL). The successor to FEEL was Youtoo (interpreted and compiled versions), by University of Bath in the United Kingdom.[3] An interpreter for the basic level of EuLisp, level-0, was written by Russell Bradford in XScheme, an implementation of Scheme by David Michael Betz, originally named EuScheme EuScheme but the most recent version is renamed EuXLisp [1] to avoid confusion. Also Eu2C [2], a EuLisp optimizing compiler, was created by Fraunhofer ISST under the APPLY project in Germany [3].

A dialect of EuLisp was developed, named Plural EuLisp. It was EuLisp with parallel computing programming extensions.

Example edit

Example use of classes in the algorithm to solve the "Towers of Hanoi" problem.

(defmodule hanoi  (syntax (syntax-0)  import (level-0)  export (hanoi)) ;;;------------------------------------------------- ;;; Tower definition ;;;------------------------------------------------- (defconstant *max-tower-height* 10) (defclass <tower> ()  ((id reader: tower-id keyword: id:)  (blocks accessor: tower-blocks))) (defun build-tower (x n)  (labels ((loop (i res)  (if (= i 0) res  (loop (- i 1) (cons i res)))))  ((setter tower-blocks) x (loop n ()))  x)) (defmethod generic-print ((x <tower>) (s <stream>))  (sformat s "#<tower ~a: ~a>" (tower-id x) (tower-blocks x))) ;;;------------------------------------------------- ;;; Access to tower blocks ;;;------------------------------------------------- (defgeneric push (x y)) (defmethod push ((x <tower>) (y <fpi>))  (let ((blocks (tower-blocks x)))  (if (or (null? blocks) (< y (car blocks)))  ((setter tower-blocks) x (cons y blocks))  (error <condition>  (fmt "cannot push block of size ~a on tower ~a" y x))))) (defgeneric pop (x)) (defmethod pop ((x <tower>))  (let ((blocks (tower-blocks x)))  (if blocks  (progn  ((setter tower-blocks) x (cdr blocks))  (car blocks))  (error <condition>  (fmt "cannot pop block from empty tower ~a" x))))) ;;;------------------------------------------------- ;;; Move n blocks from tower x1 to tower x2 using x3 as buffer ;;;------------------------------------------------- (defgeneric move (n x1 x2 x3)) (defmethod move ((n <fpi>) (x1 <tower>) (x2 <tower>) (x3 <tower>))  (if (= n 1)  (progn  (push x2 (pop x1))  (print x1 nl x2 nl x3 nl nl))  (progn  (move (- n 1) x1 x3 x2)  (move 1 x1 x2 x3)  (move (- n 1) x3 x2 x1)))) ;;;------------------------------------------------- ;;; Initialize and run the 'Towers of Hanoi' ;;;------------------------------------------------- (defun hanoi ()  (let ((x1 (make <tower> id: 0))  (x2 (make <tower> id: 1))  (x3 (make <tower> id: 2)))  (build-tower x1 *max-tower-height*)  (build-tower x2 0)  (build-tower x3 0)  (print x1 nl x2 nl x3 nl nl)  (move *max-tower-height* x1 x2 x3))) (hanoi) ;;;------------------------------------------------- ) ;; End of module hanoi ;;;------------------------------------------------- 

References edit

  1. ^ "Eulisp" (PDF). GitHub.
  2. ^ a b c "Eulisp". GitHub.
  3. ^ Kind, Andreas. "Youtoo". School of Mathematical Sciences. University of Bath. England. Retrieved 2018-10-28.
  • "An Overview of EuLisp", Julian Padget, Greg Nuyens, and Harry Bretthauer, editors. LISP and Symbolic Computation, Volume 6, Number 1-2, 1993, pages 9–98.
  • "Balancing the EuLisp Metaobject Protocol", Harry Bretthauer, Jürgen Kopp, Harley Davis, and Keith Playford. LISP and Symbolic Computation, Volume 6, Issue 1–2, August 1993, pages 119–138.
  • "EuLisp in Education", R. Bradford and D.C. DeRoure. LISP and Symbolic Computation, Volume 6, Number 1-2, pages 99–118.
  • "Applications of Telos", Peter Broadbery, Christopher Burdorf. LISP and Symbolic Computation, Volume 6, Issue 1–2, August 1993, pages 139–158.
  • "A Practical Approach to Type Inference for EuLisp", Andreas Kind and Horst Friedrich. LISP and Symbolic Computation, Volume 6, Issue 1–2, August 1993, pages 159–176.
  • "EuLisp Threads: A Concurrency Toolbox", Neil Berrington, Peter Broadbery, David DeRoure, and Julian Padget. LISP and Symbolic Computation, Volume 6, Issue 1–2, August 1993, pages 177–200.
  • "Plural EuLisp: A Primitive Symbolic Data Parallel Model", Simon Merrall, Julian Padget. LISP and Symbolic Computation, Volume 6, Issue 1–2, August 1993, pages 201–219.
  • "A Conservative Garbage Collector for an EuLisp to ASM/C Compiler", E. Ulrich Kriegel. OOPSLA'93 Workshop on Garbage Collection and Memory Management, Washington, DC, September 27, 1993.
  • "An Implementation of Telos in Common Lisp" 2006-02-14 at the Wayback Machine, Object Oriented Systems, vol. 3, pp. 31–49, 1996. ISSN 0969-9767.

External links edit

  • EuLisp FAQ and links
  • Version .99 of the final 1993 specification – (PDF)
  • Version .991 2012-03-06 at the Wayback Machine unofficial updated draft definition (2010) – (PDF)
  • EuScheme sources
  • EuLisp on GitHub, latest versions of: EuLisp (with 64-bit support and more), EuXLisp, Eu2C

eulisp, statically, dynamically, scoped, lisp, dialect, developed, loose, formation, industrial, academic, lisp, users, developers, from, around, europe, standardizers, intended, create, lisp, less, encumbered, past, compared, common, lisp, minimalist, scheme,. EuLisp is a statically and dynamically scoped Lisp dialect developed by a loose formation of industrial and academic Lisp users and developers from around Europe The standardizers intended to create a new Lisp less encumbered by the past compared to Common Lisp and not so minimalist as Scheme Another objective was to integrate the object oriented programming paradigm well It is a third generation programming language EuLispParadigmmulti paradigm functional procedural meta object orientedFamilyLispFirst appeared1990 33 years ago 1990 Preview release0 991 1 2010 13 years ago 2010 Typing disciplinestrong dynamicScopestatic and dynamicOSLinuxFilename extensions emMajor implementationsEuXLisp 2 Youtoo 2 Eu2C 2 Influenced byCommon Lisp InterLisp LeLisp Lisp VM Scheme T CLOS ObjVlisp Oaklisp MicroCeyx MCS Standard ML HaskellInfluencedDylan ISLISP Evelin Contents 1 Origin 2 Distinguishing features 2 1 Summary 3 Implementations 4 Example 5 References 6 External linksOrigin editThe language definition process first began in a meeting in 1985 in Paris and took several years The complete specification and a first implementation interpreted only were made available in 1990 Timeline of Lisp dialectsvte 1958 1960 1965 1970 1975 1980 1985 1990 1995 2000 2005 2010 2015 2020 LISP 1 1 5 LISP 2 abandoned Maclisp Interlisp MDL Lisp Machine Lisp Scheme R5RS R6RS R7RS small NIL ZIL Zork Implementation Language Franz Lisp Common Lisp ANSI standard Le Lisp MIT Scheme XLISP T Chez Scheme Emacs Lisp AutoLISP PicoLisp Gambit EuLisp ISLISP OpenLisp PLT Scheme Racket newLISP GNU Guile Visual LISP Clojure Arc LFE HyDistinguishing features editSee also Lisp programming language Its main traits are that it is a Lisp 1 no separate function and variable namespaces has a Common Lisp Object System CLOS style generic function type object oriented system named The EuLisp Object System TELOS integrated from the ground up has a built in module system and is defined in layers to promote the use of the Lisp on small embedded hardware and educational machines It supports continuations though not as powerfully as Scheme It has a simple lightweight process mechanism threads Summary edit A definition in levels currently Level 0 and Level 1 Modules based on non first class lexical environments Lexically scoped with dynamic or late binding available in Level 1 A single name space for function and variable names like Scheme Lightweight processes A fully integrated object system with single inheritance at Level 0 and multiple inheritance and meta object protocol at Level 1 An object oriented condition system Implementations editAn early implementation of EuLisp was Free and Eventually Eulisp FEEL The successor to FEEL was Youtoo interpreted and compiled versions by University of Bath in the United Kingdom 3 An interpreter for the basic level of EuLisp level 0 was written by Russell Bradford in XScheme an implementation of Scheme by David Michael Betz originally named EuScheme EuScheme but the most recent version is renamed EuXLisp 1 to avoid confusion Also Eu2C 2 a EuLisp optimizing compiler was created by Fraunhofer ISST under the APPLY project in Germany 3 A dialect of EuLisp was developed named Plural EuLisp It was EuLisp with parallel computing programming extensions Example editExample use of classes in the algorithm to solve the Towers of Hanoi problem defmodule hanoi syntax syntax 0 import level 0 export hanoi Tower definition defconstant max tower height 10 defclass lt tower gt id reader tower id keyword id blocks accessor tower blocks defun build tower x n labels loop i res if i 0 res loop i 1 cons i res setter tower blocks x loop n x defmethod generic print x lt tower gt s lt stream gt sformat s lt tower a a gt tower id x tower blocks x Access to tower blocks defgeneric push x y defmethod push x lt tower gt y lt fpi gt let blocks tower blocks x if or null blocks lt y car blocks setter tower blocks x cons y blocks error lt condition gt fmt cannot push block of size a on tower a y x defgeneric pop x defmethod pop x lt tower gt let blocks tower blocks x if blocks progn setter tower blocks x cdr blocks car blocks error lt condition gt fmt cannot pop block from empty tower a x Move n blocks from tower x1 to tower x2 using x3 as buffer defgeneric move n x1 x2 x3 defmethod move n lt fpi gt x1 lt tower gt x2 lt tower gt x3 lt tower gt if n 1 progn push x2 pop x1 print x1 nl x2 nl x3 nl nl progn move n 1 x1 x3 x2 move 1 x1 x2 x3 move n 1 x3 x2 x1 Initialize and run the Towers of Hanoi defun hanoi let x1 make lt tower gt id 0 x2 make lt tower gt id 1 x3 make lt tower gt id 2 build tower x1 max tower height build tower x2 0 build tower x3 0 print x1 nl x2 nl x3 nl nl move max tower height x1 x2 x3 hanoi End of module hanoi References edit Eulisp PDF GitHub a b c Eulisp GitHub Kind Andreas Youtoo School of Mathematical Sciences University of Bath England Retrieved 2018 10 28 An Overview of EuLisp Julian Padget Greg Nuyens and Harry Bretthauer editors LISP and Symbolic Computation Volume 6 Number 1 2 1993 pages 9 98 Balancing the EuLisp Metaobject Protocol Harry Bretthauer Jurgen Kopp Harley Davis and Keith Playford LISP and Symbolic Computation Volume 6 Issue 1 2 August 1993 pages 119 138 EuLisp in Education R Bradford and D C DeRoure LISP and Symbolic Computation Volume 6 Number 1 2 pages 99 118 Applications of Telos Peter Broadbery Christopher Burdorf LISP and Symbolic Computation Volume 6 Issue 1 2 August 1993 pages 139 158 A Practical Approach to Type Inference for EuLisp Andreas Kind and Horst Friedrich LISP and Symbolic Computation Volume 6 Issue 1 2 August 1993 pages 159 176 EuLisp Threads A Concurrency Toolbox Neil Berrington Peter Broadbery David DeRoure and Julian Padget LISP and Symbolic Computation Volume 6 Issue 1 2 August 1993 pages 177 200 Plural EuLisp A Primitive Symbolic Data Parallel Model Simon Merrall Julian Padget LISP and Symbolic Computation Volume 6 Issue 1 2 August 1993 pages 201 219 A Conservative Garbage Collector for an EuLisp to ASM C Compiler E Ulrich Kriegel OOPSLA 93 Workshop on Garbage Collection and Memory Management Washington DC September 27 1993 An Implementation of Telos in Common Lisp Archived 2006 02 14 at the Wayback Machine Object Oriented Systems vol 3 pp 31 49 1996 ISSN 0969 9767 External links edit nbsp Computer programming portalEuLisp FAQ and links Version 99 of the final 1993 specification PDF Version 991 Archived 2012 03 06 at the Wayback Machine unofficial updated draft definition 2010 PDF EuScheme sources EuLisp on GitHub latest versions of EuLisp with 64 bit support and more EuXLisp Eu2C Retrieved from https en wikipedia org w index php title EuLisp amp oldid 1166922097, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.