1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/// Returns the meaning of life, universe and everything!
///
/// # Examples
///
/// ```
/// let resp = comments::all();
/// assert_eq!(42, resp);
/// ```
pub fn all() -> i32 {
    42
}