Skip to content

Commit

Permalink
Merge pull request clj-syd#1 from alyssackwan/patch-1
Browse files Browse the repository at this point in the history
Clarify basic arithmetic exercise.
  • Loading branch information
seancorfield committed May 5, 2014
2 parents 3fc5f60 + 31d64f3 commit 12803ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outline/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,4 @@ Then convert that to centimeters. There are 2.54 centimeters in an inch.

Lastly, ask two people near you for their height in centimeters. Find the average of your heights.

Bonus: Convert that average back to feet and inches. `(mod x y)` will give you the remainder when dividing two numbers.
Bonus: Convert that average back to feet and inches. The feet and the inches will be separate numbers. `(quot x y)` will give you the whole number part when dividing two numbers. `(mod x y)` will give you the remainder when dividing two numbers.

0 comments on commit 12803ee

Please sign in to comment.