1 2 3 4 5 6
use easyinput::input; fn main() { let user_input = input("What is your name? "); println!("Hello, {}!", user_input); }