dive 0.0.1

Cross-platform system interface for hardware IO.
Documentation
1
2
3
4
5
6
7
8
9
//! Print out user information.

use dive::*;

fn main() {
    let app = App::new(());

    println!("{}", app.user());
}