Skip to content

Commit

Permalink
Merge branch 'more-rules' into more-logic
Browse files Browse the repository at this point in the history
Conflicts:
	src/jonase/kibit/rules/arithmetic.clj
  • Loading branch information
jonase committed Mar 19, 2012
2 parents 14e25e6 + 0e355d5 commit 2cdf871
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/jonase/kibit/rules/arithmetic.clj
Expand Up @@ -19,5 +19,9 @@

[(= ?x ?x) true]
[(== ?x ?x) true]
[(zero? 0) true])
[(zero? 0) true]

[(* ?x (* . ?xs)) (* ?x . ?xs)]
[(+ ?x (+ . ?xs)) (+ ?x . ?xs)])


0 comments on commit 2cdf871

Please sign in to comment.