Closed davidchambers closed 9 years ago
Closes #129
@kpfell rightly pointed out that the different line-commenting syntax of JavaScript and Clojure is a distraction.
Before:
// infix 1 + 2 * 3 / 4 - 5 ;; prefix (- (+ 1 (/ (* 2 3) 4)) 5) // infix 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 ;; prefix (+ 1 2 3 4 5 6 7 8 9)
// infix 1 + 2 * 3 / 4 - 5
;; prefix (- (+ 1 (/ (* 2 3) 4)) 5)
// infix 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9
;; prefix (+ 1 2 3 4 5 6 7 8 9)
After:
Infix: 1 + 2 * 3 / 4 - 5 Prefix: (- (+ 1 (/ (* 2 3) 4)) 5) Infix: 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 Prefix: (+ 1 2 3 4 5 6 7 8 9)
Infix:
1 + 2 * 3 / 4 - 5
Prefix:
(- (+ 1 (/ (* 2 3) 4)) 5)
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9
(+ 1 2 3 4 5 6 7 8 9)
:+1:
Closes #129
@kpfell rightly pointed out that the different line-commenting syntax of JavaScript and Clojure is a distraction.
Before:
After: