fork download
  1. fn main() {
  2. let mut foo = None;
  3. foo = Some("hello");
  4. if let Some(bar) = foo {
  5. println!("{}", bar);
  6. }
  7. }
Success #stdin #stdout 0s 10960KB
stdin
Standard input is empty
stdout
hello