Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ssnickolay/buzzfeed
buzzfeed
https://github.com/ssnickolay/buzzfeed
Last synced: 2 days ago
JSON representation
buzzfeed
- Host: GitHub
- URL: https://github.com/ssnickolay/buzzfeed
- Owner: ssnickolay
- Created: 2015-01-26T13:44:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-26T13:52:19.000Z (almost 10 years ago)
- Last Synced: 2023-04-05T20:55:16.846Z (over 1 year ago)
- Language: Ruby
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
BUZZFEED
=======Print on the screen, the numbers 1 to 10000.
Numbers that are divisible by 3 should print out Buzz
Numbers that are divisible by 5 should print out Feed.
Numbers that are divisible by 3 and 5 should print BuzzFeed
TEST
=======```sh
$ rspec rspec/buzz_feed_spec.rb
```RUN
======```sh
$ ruby run.rb
=>
Print number =
1000
1
2
Buzz
4
Feed
Buzz
7
8
Buzz
Feed
11
...
```