| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
| |
dynamic scoping was dropped.
- Bump PORTREVISION
PR: 94854
Submitted by: maintainer
|
|
|
|
| |
Approved by: krion@
|
|
|
|
|
|
|
|
| |
- change maintainer e-mail
- drop WWW page
PR: ports/84478
Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
|
|
|
|
|
|
|
| |
- Fix pkg-plist
PR: ports/80336
Submitted by: maintainer
|
|
|
|
|
| |
PR: ports/79299
Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
|
|
|
|
|
|
|
| |
- Previous update broke tail call optimization. Oops.
PR: ports/78817
Submitted by: maintainer
|
|
|
|
|
| |
PR: ports/78742
Submitted by: maintainer
|
|
|
|
|
|
|
|
| |
- Added M-Expression compiler and examples
- Updated documentation
PR: ports/77413
Submitted by: Nils M. Holm (maintainer)
|
|
|
|
|
| |
PR: ports/76617
Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
|
|
|
|
|
|
|
|
| |
- Change maintainer e-mail
- Drop WWW pages
PR: ports/74203
Submitted by: maintainer
|
|
|
|
|
| |
PR: ports/72079
Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
|
|
|
|
|
|
|
|
| |
(HYPER; DEPTH; EVENP; ODDP; APPLY); lowercased much of the lib code;
bugfixes.
PR: ports/62630
Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
|
|
|
|
|
| |
PR: ports/60004
Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
|
|
|
|
| |
Reminded by: submitter of original PR (ports/58996).
|
|
|
|
|
|
|
| |
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)
|
| |
|
|
|
|
|
|
| |
Fix pkg-plist to use DOCSDIR
Noticed by: bento
|
|
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>
|