Y
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
sold
3664 days ago
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.
link
williamstein
3664 days ago
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
link