/rust-fizz-buzz

Just a simple boilerplate project.

Primary LanguageRust

FizzBuzz

This is a sample rust boilerplate project, similar to this C++ repository.

For rust cargo will do most of the work for you, so you don't really need a boilerplate project. This projects contains the following stuff in addition to a clean cargo new project:

  • A library that implements FizzBuzz, for demonstration purposes.
  • Unit tests for that library.
  • Error handling with anyhow.
  • Command line argument parsing with clap.