How do I make already defined symbolic expressions evaluate?
sage: var('x y')
(x, y)
sage: func = x*y
sage: x = 5
sage: y = 4
sage: x*y
20
sage: func
x*yThanks, Michael -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
