Fix the Poem
This poem has two bugs. Find and fix them so it prints:
text
Roses are red Violets are blue Coding is fun And so are you
rust
fn main() {
println!("Roses are red");
println!("Violets are blue")
println!("Coding is fun");
println!("And so are you";
}