1
2
3
4
5
6
Use the "Verify Solution" button to get AI feedback on your Rust code.
Your task is to implement a classic programming challenge known as FizzBuzz using Rust's fundamental control flow mechanisms. You need to iterate through numbers from 1 to 100, applying specific rules for printing based on divisibility.
Complete the main function provided to correctly implement this logic. Pay attention to Rust's loop syntax and conditional statements.