1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! small demo functions, let's make sure we're documenting correctly

/// sup
pub fn sup() -> &'static str { "sup" }

/// yo
pub fn yo() -> &'static str { "yo" }

/// hey
pub fn hey() -> &'static str { "hey" }

/// wassup
pub fn wassup() -> &'static str { "wassup" }

/// bye
pub fn bye() -> &'static str { "bye" }