#input #read-line #user-input #simple

simpler-input

更简单的方式接收用户输入

2 个不稳定版本

0.2.0 2021年3月21日
0.1.0 2021年3月19日

#9 in #readline

MIT/Apache 协议

3KB

以更简单的方式接收用户输入。

使用方法

simpler-input = "0.2.0"

只有一个函数,因此更容易实现和记忆。

use simpler-input::input;

fn main() {
	// if you decide to get user input with no text printed before, you must pass None as an arg
	let a = input(None);
	
	// if you want text printed directly before your program asks for input, you can pass a string
	let b = input("Hello there!");
}

无运行时依赖