fizzbuzz 0.1.0

The ultimate FizzBuzz implementation
Documentation
1
2
3
4
5
extern crate fizzbuzz;

fn main() {
    fizzbuzz::fizzbuzz(1..100);
}