ソースを参照

Playing with markdown

Matt Coles 10 年 前
コミット
72d87bd2b4
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  1. 4 0
      README.md

+ 4 - 0
README.md

@@ -1,6 +1,10 @@
1 1
 # LISP Polynomial Calculator
2
+
2 3
 * A simple polynomial calculator in lisp
4
+
3 5
 * Polynomials are in the form 
4 6
     '(((SYMBOL EXPONENT) MULTIPLIER) ((SYMBOL EXPONENT) MULTIPLIER))
7
+
5 8
 * For example this:
6 9
     '(((x 2) 5) ((((x y) (2 3)) 5))) \= 5x^2 + 5x^2y^3
10
+