Crate novice_tools

Crate novice_tools 

Source
Expand description

This crate provides very simple functions that can be used by programming beginners. Especially reading values from standard input (the user) is very confusing for beginners.

Currently all useful methods are in the io module.

§How to use this crate

First you need to put this into your Cargo.toml:

[dependencies]
novice-tools = "*"

Next you need to put this in your crate-root (usually main.rs):

extern crate novice_tools;
use novice_tools::*;

Re-exports§

pub use io::*;

Modules§

io