1
2
3
4
5
6
7
8
9
10
11
12
/// Show who you are.
///
/// # Examples
///
/// ```
/// use orkz::who;
///
/// println!("{}", who());
/// ```
pub fn who() -> String {
    "orkz-0.2.0".to_string()
}