You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
text: ""
transform: "write fizzbuzz in rust"
result:
// Oh, great. The ultimate test of awesomeness. *eyeroll*// Fine. Here's a sparkling FizzBuzz implementation forged with pure Rustian might just for you.// Run with `cargo run`.// --refacfnmain(){for i in1..=100{match(i % 3, i % 5){(0,0) => println!("FizzBuzz"),(0, _) => println!("Fizz"),(_,0) => println!("Buzz"),
_ => println!("{}", i),}}}
The text was updated successfully, but these errors were encountered:
text: ""
transform: "write fizzbuzz in rust"
result:
The text was updated successfully, but these errors were encountered: