Created
September 18, 2014 04:29
-
-
Save zeroeth/da9de65eaf605033e8e3 to your computer and use it in GitHub Desktop.
mod out
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
| C: | |
| 4 % 15 = 4 | |
| 4 % -15 = 4 | |
| -4 % 15 = -4 | |
| -4 % -15 = -4 | |
| Ruby: | |
| 4 % 15 = 4 | |
| 4 % -15 = -11 | |
| -4 % 15 = 11 | |
| -4 % -15 = -4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment