beginner_tools 1.1.1

Useful library designed for new Rustacens, provides good examples that are useful in simple projects
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented2 out of 2 items with examples
  • Size
  • Source code size: 4.58 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.05 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Ino4137/beginner_tools
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Welperooni

beginner_tools

Usage

First, add the following to your Cargo.toml:

[dependencies]
beginner_tools = "1.1.1"

Next, add this to your crate root:

extern crate beginner_tools;
use beginner_tools::*;

And you are free to use any function the crate offers!

At the moment there are two functions:

  • get_stdin
  • input

The latter is basically a wrapper over the first that provides more functionality.

For further information refer to the documentation