rustgo/
lib.rs

1// pub mod bufio;
2// pub mod bytes;
3// pub mod crypto;
4// pub mod encoding;
5// pub mod hash;
6// pub mod math;
7// pub mod path;
8// pub mod sort;
9// pub mod strconv;
10pub mod strings;
11// pub mod time;
12
13#[cfg(test)]
14mod tests {
15    #[test]
16    fn it_works() {
17        assert_eq!(2 + 2, 4);
18    }
19}