Skip to content

Files

Latest commit

 

History

History
17 lines (14 loc) · 289 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 289 Bytes

A Python-like input library for Rust

INSTALL

[dependencies]
pyinput = { git = "https://github.com/mallocdev/pyinput-rs.git" }

USAGE

use pyinput::input;

fn main() {
    let input = input("Enter your name: ").unwrap();
    println!("Hello, {}!", input);
}