Ask for the syntax of representing operators in Common-Lisp
- Subject: Ask for the syntax of representing operators in Common-Lisp
- From: Barton Willis
- Date: Mon, 10 Jul 2006 12:18:47 -0500
Does 'grind' do what you want? Example:
(%i1) integrate(x^2+x,x);
(%o1) x^3/3+x^2/2
(%i2) grind(%);
x^3/3+x^2/2$
Barton