rstd 0.3.0

A library providing an easy/ergonomic interface to some functions to help ease my students into Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(pattern)]
extern crate promptly;

pub mod string;
pub mod math;
pub mod io;

pub mod prelude {
	pub use crate::string::*;
	pub use crate::math::*;
	pub use crate::io::*;
}