Closed
Description
Steps to reproduce:
- https://doc.rust-lang.org/std/env/fn.args.html
- Click on "Run" in the example block
Playpen opens up with this code snippet:
fn main() {
use std::env;
// Prints each argument on a separate line
for argument in env::args() {
println!("{}", argument);
}
}
It should instead open up with this snippet:
fn main() {
use std::env;
// Prints each argument on a separate line
for argument in env::args() {
println!("{}", argument);
}
}