hawaiian-earring: number(stage) number(radius) -> image. Create stage circles with each successive circle 80% of the radius of the previous one.
(hawaiian-earring 10 80)
double-ss: string -> string. Double each s appearing in the string.
(check-expect (double-ss "The snake was silent.")
"The ssnake wass ssilent.")
math-mess: number(start) number(end) -> number. For all of the numbers between start and end: add the squares of the even numbers, subtract the square roots of the odd numbers.