Search found 2 matches

by dido
Fri Aug 11, 2006 4:59 pm
Forum: newLISP newS
Topic: dynamic binding in newLISP
Replies: 2
Views: 3431

dynamic binding in newLISP

I've been exploring newLISP lately and one of the things I've noticed is that unlike most modern LISP dialects such as Scheme and ANSI Common LISP, newLISP uses dynamic binding to obtain the values of free variables. The following code: (let ((x 1)) (let ((f (lambda (y) (+ x y))) (g (lambda (f y) (l...
by dido
Fri Aug 11, 2006 3:18 pm
Forum: newLISP newS
Topic: secuirty and distributed programming with newLISP
Replies: 3
Views: 4144

secuirty and distributed programming with newLISP

I just ran into newLISP today while looking for new Lisp dialects (seeing as Common Lisp and Scheme in many ways make most of my workaday tasks more difficult than they should be, although they are also neat), and so far it seems that this has got a lot of potential. The distributed programming faci...