Hacker News new | ask | show | jobs
by davesque 3664 days ago
Slightly off-topic: Does anyone know if Sage allows for lisp-style meta-programming like Mathematica?
2 comments

It's Python - you can do a lot of meta-programming with it, though unlike Lisp and Mathematica there's a division between expressions and statements.
For what it is worth, lisp is also one of the components of Sage, since we need it for Maxima, which provides some important functionality.

sage: lisp('(+ 2 3)')

5