Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 70dbb99

Browse filesBrowse files
authored
Create README.md
1 parent a8130e2 commit 70dbb99
Copy full SHA for 70dbb99

File tree

1 file changed

+17
-0
lines changed
Filter options

1 file changed

+17
-0
lines changed

‎README.md

Copy file name to clipboard
+17Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# A Python-like input library for Rust
2+
3+
## INSTALL
4+
```toml
5+
[dependencies]
6+
pyinput = { git = "https://github.com/mallocdev/pyinput-rs.git" }
7+
```
8+
9+
## USAGE
10+
```rust
11+
use pyinput::input;
12+
13+
fn main() {
14+
let input = input("Enter your name: ").unwrap();
15+
println!("Hello, {}!", input);
16+
}
17+
```

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.