sinput 0.1.5

A simple CLI tool with short functions naming that asks for user input in meaningful way
Documentation
1
2
3
4
5
6
7
8
mod lib;

fn main(){
    let input=lib::as_i8("Enter i8 type input");
    println!("{}",input);


}