Hi James,
I hope the sabbatical's going well.
HELP POPLISP gives a good overview. The basics are as follows :
You can refer to a Pop11 procedure/variable by pretending it's from a lisp
package called "pop11" e.g.
pop11::popmemlim
(pop11::hd '(a b c))
To acces a lisp symbol from Pop, prefix it with "@" and type it in upper
case e.g.
@PI =>
To call a lisp function, give it one extra (rightmost) argument which is
the number of arguments e.g.
@CAR([a b c], 1) =>
@MIN(202, 101, 404, 3) =>
All the best,
Colin
|