A simple polynomial calculator in lisp

Matt Coles d759090578 Add more tests and improved README 10 anos atrás
LICENSE ce4d46795d Initial commit 10 anos atrás
README.md d759090578 Add more tests and improved README 10 anos atrás
poly.cl 2c7b699d1b Fully comment poly.cl and add new tests.cl with some testing 10 anos atrás
tests.cl d759090578 Add more tests and improved README 10 anos atrás

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