fortycal
0
Q:

rust input

//Declare dependencies
use std::io::stdin;

fn main() {
	//Declare a mutable input string
    let mut input_string = String::new();
    stdin.read_line(&mut input_string)
    	.ok()
        .expect("Failed to read line");
}
0

New to Communities?

Join the community