Martin Rubey rote:
> 
> Waldek, in case you know, could you just provide an example call from within
> the Axiom interpreter?  I tried
> 
> getDependentsOfConstructor(Integer)$Lisp
> 
> but only nil was returned.
> 

>From interpreter you may use:

)lisp (|getDependentsOfConstructor| '|Integer|)

The argument is an unevaluated (because of quote) symbol.  If you want to
call it from Spad you need to use something like:

(getDependentsOfConstructor$Lisp)((INTERN$Lisp)("Integer"))

or maybe use FIND_-SYMBOL insted of INTERN.  I do not know if there
is easier method to pass Lisp symbol from Spad to Lisp function.

-- 
                              Waldek Hebisch
[EMAIL PROTECTED] 


_______________________________________________
Axiom-developer mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/axiom-developer

Reply via email to