To read user input in Rust, you need to use the stdin
module from the io
module. First, you'll need to import the io
module:
main.rs13 chars2 lines
Then, you can read user input using the stdin
function on the io
module:
main.rs96 chars3 lines
This code reads a line of user input from the console and stores it in a mutable String
variable called input
.
Finally, you can print the user's input using println!
:
main.rs36 chars2 lines
Here's the full example:
main.rs216 chars11 lines
gistlibby LogSnag