simple_input 0.1.0

A simple library for taking user input, inspired by python
Documentation

Simple Input

simple_input provides a simple way to ask for user input, inspired by Python's input function.

extern crate simple_input;
use simple_input::input;

fn main() {
let name = input("What is your name? ");
println!("Hello {}!", name);
}