1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/// An absolutely useless function that alway returns 110.
///
/// eleven +‎ -ty, from Old English hundendleftig (also spelled hund-endleofantig,
/// hund-endlyftig, and hund-ælleftig).
///
/// Originally derived from Tolkien's Lord of the Rings trilogy.
/// Bilbo Baggin's eleventy-first birth day was the setting of the opening chapter.
/// Since used by people all over the world.
///
/// ```
/// let result = eleventy::eleventy();
/// assert_eq!(result, 110);
/// ```
///
/// ```
/// let result = eleventy::eleventy();
/// assert_ne!(result, 42);
/// ```
pub const fn eleventy() -> u8 {
    110
}