finput 0.1.1

A simpler input
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.33 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 94.61 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • abc-JYL

finput

A simpler input fuction than read_line

Examples:

use finput::input;

fn main() {
    let inp = input("Input: ");
    print!("{inp}");
}