wil 0.0.6

This crates is a demonstrator of what a Windows Implementation Library in Rust could look like
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(dead_code)]
pub mod errorhandling;
pub mod token;

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