https://github.com/marschall/fizzbuzz-stream
A Java 8 Stream API based implementation of FizzBuzz
https://github.com/marschall/fizzbuzz-stream
Last synced: 3 months ago
JSON representation
A Java 8 Stream API based implementation of FizzBuzz
- Host: GitHub
- URL: https://github.com/marschall/fizzbuzz-stream
- Owner: marschall
- Created: 2014-12-25T11:13:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-05T18:13:13.000Z (over 7 years ago)
- Last Synced: 2025-01-16T02:45:13.873Z (4 months ago)
- Language: Java
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
FizzBuzz Java 8 Stream Edition [](https://travis-ci.org/marschall/fizzbuzz-stream)
==============================A [Java 8 Stream API](http://www.oracle.com/technetwork/articles/java/ma14-java-se-8-streams-2177646.html) based implementation of [FizzBuzz](http://c2.com/cgi/wiki?FizzBuzzTest).
```java
FizzBuzz.stream().limit(100L).forEach(System.out::println);
```