Documentation
1
2
3
4
5
6
7
8
9

fn main() {
    println!("Hello, world!");

    let result = slib::add(2,4);
    let result = slib::grandSection::section2::sub(2,4);

    println!("{}", result);
}