Generation

fix invalid codeMon, 14 Nov 2022

fn fizz_buzz(i: i32) { if i % 2 == 0 && i % 3 == 0 { "FizzBuzz" } else if i % 2 == 0 { "Fizz" } else if i % 3 == 0 { "Buzz" } else { i } }

## Contributing See [the contributing file](CONTRIBUTING.md)! PRs accepted. Small note: If editing the Readme, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification. ## License MIT © 2018

Questions about programming?Chat with your personal AI assistant