Printing Variables - Your Turn

Here's the same code to try yourself.

SOURCE CODE

fn main() {
  let alfa = String::from("apple");
  println!("alfa is {alfa}");
}

CODE RUNNER