cracklepop

CracklePop implementation in C for the Recurse Center
git clone git://jacobedwards.org/cracklepop
Log | Files | Refs | README

README (348B)


      1 CraclePop implementation in C for the Recurse Center
      2 <https://www.recurse.com/> application:
      3 
      4 	Write a program that prints out the numbers 1 to 100 (inclusive).
      5 	If the number is divisible by 3, print Crackle instead of the number.
      6 	If it's divisible by 5, print Pop. If it's divisible by both 3 and
      7 	5, print CracklePop. You can use any language.