scythe 0.1.1

A library and tool set for creating applications with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! TODO: write this documentation

#[cfg(feature = "paths")]
pub use scythe_paths as paths;

#[cfg(feature = "platform")]
pub use scythe_platform as platform;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}