I am new to Rust, I was doing some coding practice in Rust Playground, I was trying to get the input from the user using io::stdin().read_line(). When I ran the program, in the execution tab I am not able to enter the user input. Do I miss anything here or Rust Playground won't allow any user input?
In so far as I know, you can't read user input on the playground. When you hit "Run", it compiles and runs the program to completion, and then reports the output. There is no interactivity.
Thanks for the reply, I did emulate the fixed inputs and it worked. So just wanted to confirm. Also wanted to know which IDE is preferred for RUST programming.