rust_CSE_docs 0.1.0

A Rust crate for modeling basic documentation and CSE-related examples.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// We will write a document to simply add two numbers
///
/// # Examples
/// ```
/// let a = 10;
/// let b = 20;
/// assert_eq!(30, add_two_numbers(a, b));
/// ```

pub fn add_two_numbers(a: i32, b: i32) -> i32 {
    a + b
}