A simple polynomial calculator in lisp

Matt Coles 72d87bd2b4 Playing with markdown лет назад: 10
LICENSE ce4d46795d Initial commit лет назад: 10
README.md 72d87bd2b4 Playing with markdown лет назад: 10
poly.cl 2c7b699d1b Fully comment poly.cl and add new tests.cl with some testing лет назад: 10
tests.cl d759090578 Add more tests and improved README лет назад: 10

README.md

LISP Polynomial Calculator

  • A simple polynomial calculator in lisp

  • Polynomials are in the form '(((SYMBOL EXPONENT) MULTIPLIER) ((SYMBOL EXPONENT) MULTIPLIER))

  • For example this: '(((x 2) 5) ((((x y) (2 3)) 5))) \= 5x^2 + 5x^2y^3