rdocs 0.1.2

Code Documentation Made Simple
Documentation
some text
some text
some text
some text
Here your can find a function that add two numbers and return the result
<!-- đź“–adding_numbers -->
// remove this line
fn add_numbers(a: i32, b: i32) -> i32 {
    a + b
}
<!-- adding_numbersđź“– -->
some text
some text
And here is is example how to print content to the stdout
<!-- đź“–greet_person -->
fn greet_person(name: &str) {
    println!("Hello, {}! Welcome to the Rust example.", name);
}
<!-- greet_personđź“– -->