Rust-Programming-Cookbook/Chapter01/__old/lib.rs

21 wiersze
205 B
Rust

mod variables
mod mutablility
mod numbers
mod arithmetics
mod strings
mod arrays
mod vectors
mod tuples
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}