Просмотр исходного кода

Code blocks in my markdown pls

Matt Coles лет назад: 10
Родитель
Сommit
75c4fc0630
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      README.md

+ 3 - 1
README.md

2
 
2
 
3
 * A simple polynomial calculator in lisp
3
 * A simple polynomial calculator in lisp
4
 
4
 
5
-* Polynomials are in the form 
5
+* Polynomials are in the form:
6
+
6
     '(((SYMBOL EXPONENT) MULTIPLIER) ((SYMBOL EXPONENT) MULTIPLIER))
7
     '(((SYMBOL EXPONENT) MULTIPLIER) ((SYMBOL EXPONENT) MULTIPLIER))
7
 
8
 
8
 * For example this:
9
 * For example this:
10
+
9
     '(((x 2) 5) ((((x y) (2 3)) 5))) = 5x^2 + 5x^2y^3
11
     '(((x 2) 5) ((((x y) (2 3)) 5))) = 5x^2 + 5x^2y^3
10
 
12
 
11
 * The functions that exist are poly+ poly- poly*
13
 * The functions that exist are poly+ poly- poly*