aboutsummaryrefslogtreecommitdiffstats
path: root/lang/alisp
Commit message (Collapse)AuthorAgeFilesLines
* - re-wrote the T3X part of the interpreter in Caaron2006-06-144-182/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | - re-wrote the reference manual - added AND and OR primitives - added RECURSIVE-BIND primitive - added DEFINED primitive - replaced meta commands with functions, ie :L FILE.L became (LOAD FILE) - replaced (DEFUN f(x) ...) with (DEFINE (f x) ...) - replaced LABEL with LET and LETREC - replaced *T* and *F* (true/false) with T and () - dropped CALL/CC - renamed math functions: plus/iplus/rplus -> N+, I+, R+, + times/itimes/rtimes -> N*, I*, R*, * difference/idifference/rdifference -> N-, I-, R-, - rquotient -> / - added default workspace image (no need to install a local copy of the library functions any longer) - temporarily removed most example programs PR: ports/98483 Submitted by: Nils M Holm <nmh@t3x.org> Reviewed by: aaron Approved by: tobez
* - Distfile are rerolled. From diff and README: As of version 2005-04-29, ↵mnag2006-04-162-3/+4
| | | | | | | | | dynamic scoping was dropped. - Bump PORTREVISION PR: 94854 Submitted by: maintainer
* SHA256ifyedwin2006-01-221-0/+1
| | | | Approved by: krion@
* - change MASTER_SITElawrance2005-09-042-4/+2
| | | | | | | | - change maintainer e-mail - drop WWW page PR: ports/84478 Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
* - Update to 20050425jylefort2005-04-263-5/+5
| | | | | | | - Fix pkg-plist PR: ports/80336 Submitted by: maintainer
* - Update to 20050327pav2005-04-132-3/+3
| | | | | PR: ports/79299 Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
* - Update to 20050314vs2005-03-142-3/+3
| | | | | | | - Previous update broke tail call optimization. Oops. PR: ports/78817 Submitted by: maintainer
* Update to 20050312krion2005-03-134-175/+176
| | | | | PR: ports/78742 Submitted by: maintainer
* - Update to 20050212vs2005-02-144-6/+10
| | | | | | | | - Added M-Expression compiler and examples - Updated documentation PR: ports/77413 Submitted by: Nils M. Holm (maintainer)
* - Update to 20050124pav2005-01-253-3/+6
| | | | | PR: ports/76617 Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
* - Change URLvs2004-11-222-4/+2
| | | | | | | | - Change maintainer e-mail - Drop WWW pages PR: ports/74203 Submitted by: maintainer
* - Update to 20040924pav2004-10-124-42/+11
| | | | | PR: ports/72079 Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
* Update to 2004-02-06; added pre-compiled image; added a few new functionslinimon2004-02-134-5/+15
| | | | | | | | (HYPER; DEPTH; EVENP; ODDP; APPLY); lowercased much of the lib code; bugfixes. PR: ports/62630 Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
* - Update to 20031205.pav2003-12-153-7/+39
| | | | | PR: ports/60004 Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
* Forgot to check this in at the same time as Makefile and distinfo.linimon2003-11-181-4/+51
| | | | Reminded by: submitter of original PR (ports/58996).
* Maintainer update to latest version. Major changes: renumbered versioning;linimon2003-11-182-5/+4
| | | | | | | the user interface has changed to vi(1) style. For other changes and bugfixes see alisp.t. PR: ports/58996 Submitted by: nmh@t3x.org (maintainer)
* Incorporated into upstream version. PR: ports/58996.linimon2003-11-181-41/+0
|
* Give the MAKE_ENV the proper BINOWN/BINGRP variables.edwin2003-10-132-4/+6
| | | | | | Fix pkg-plist to use DOCSDIR Noticed by: bento
* New port: ArrowLISP - purely symbolic LISP interpreter and IDEedwin2003-09-285-0/+183
ArrowLISP is a small, properly tail-recursive, dynamically scoped interpreter for a purely symbolic and almost side-effect-free dialect of LISP. It may be considered an implementation of pure LISP. The interpreter has both a command line interface and an editor-like full screen interface. PR: ports/55501 Submitted by: Nils M Holm <nmh@t3x.org>