Last active
August 29, 2015 14:15
-
-
Save kouddy/07970e6d4696018c4ab4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; First process | |
(+ 4 5) | |
(inc (+ 3 5)) | |
(inc (inc (+ 2 5))) | |
(inc (inc (inc (+ 1 5)))) | |
(inc (inc (inc (inc (+ 0 5))))) | |
(inc (inc (inc (inc 5)))) | |
(inc (inc (inc 6))) | |
(inc (inc 7)) | |
(inc 8) | |
9 | |
;;; Second process | |
(+ 4 5) | |
(+ 3 6) | |
(+ 2 7) | |
(+ 1 8) | |
(+ 0 9) | |
9 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment