PC-LISP

From Wikipedia, the free encyclopedia

PC-LISP is an implementation of the Franz Lisp dialect for DOS by Peter Ashwood-Smith.

Version 2.11 was released on May 15, 1986. It can still be found on old abandonware and shareware download sites.

Ashwood-Smith says of his interpreter: "PC-LISP is a small implementation of LISP for ANY MS-DOS machine. While small, it is capable of running a pretty good subset of Franz LISP."[1]

Note that the Franz LISP dialect was the immediate, portable successor to the ITS version of Maclisp and is perhaps the closest thing to the LISP in the Steven Levy book Hackers as is practical to operate. PC-LISP runs well in DOS emulators and on modern Windows versions. Because PC-LISP implements Franz LISP, it is a dynamically scoped predecessor to modern Common Lisp. This is therefore an historically important implementation.

Example

The session is running the following code which demonstrates dynamic scoping in Franz LISP. Note that PC-LISP does not implement the let special form that Emacs Lisp provides for local variables. Instead, all variables are what an ALGOL-based language would call "global". The first dialect of Lisp to incorporate ALGOL scoping rules (called lexical scoping) was Scheme although the Common Lisp language also added this feature.

;; Demonstration of dynamic scoping
 
;; This is a "global" variable
(setq myglobal "this is my global variable")
 
;; Another global variable
(setq yourglobal "this is my global variable")
 
;; a function which prints the symbols
(defun dosomething (mine yours)
  (princ " * Mine is  - ")
  (princ mine)
  (princ "\n")
  (princ " * Yours is - ")
  (princ yours)
  (princ "\n"))
 
;; override the symbols
(defun nolocals ()
  (setq mine "I have set mine to a new value")
  (setq yours "I have set mine to a new value")
  (dosomething mine yours))
 
(defun main ()
  ;; define two symbols
  (setq mine myglobal)
  (setq yours yourglobal)
 
  ;; print them
  (princ "calling dosomething\n")
  (dosomething mine yours)
  (princ "calling nolocals\n")
  (nolocals)
  (princ "calling dosomething again\n")
  (dosomething mine yours))

References

  1. from the distribution's readme file

External links

  • List of files which includes: "PCLISP.ZIP 62745 02-23-86 a near franz lisp (with documentation)"
This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.