https://github.com/focusaurus/crackle-pop
FizzBuzz style exercise in rust for Recurse Center application
https://github.com/focusaurus/crackle-pop
Last synced: about 1 year ago
JSON representation
FizzBuzz style exercise in rust for Recurse Center application
- Host: GitHub
- URL: https://github.com/focusaurus/crackle-pop
- Owner: focusaurus
- License: mit
- Created: 2017-06-28T16:09:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-30T22:41:35.000Z (almost 9 years ago)
- Last Synced: 2025-03-25T18:02:54.715Z (about 1 year ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Crackle Pop
This is a small programming exercise coded in rust as part of the [Recurse Center](https://www.recurse.com) application by Peter Lyons in June 2017.
## Instructions
Write a program that prints out the numbers 1 to 100 (inclusive). If the number is divisible by 3, print Crackle instead of the number. If it's divisible by 5, print Pop. If it's divisible by both 3 and 5, print CracklePop. You can use any language.
## Rust Ability Caveat
At the time of writing, I was very much a beginner in the rust programming language.
## How to...
- run tests: `cargo test`
- run: `cargo run`
- build for production: `cargo build --release`