Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 328 Bytes

q2_function.md

File metadata and controls

14 lines (9 loc) · 328 Bytes

###Functions

Write this function:

Given an int count of a number of apples, return a string of the
form 'Number of apples: <count>', where <count> is the number
passed in. However, if the count is 12 or more, then use the word
'more than a dozen' instead of the actual count.

Example code: