1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
// Copyright © 2016 Peter Atashian
// Licensed under the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>.
// All files in the project carrying such notice may not be copied, modified, or distributed
// except according to those terms.
//! This crate provides lagomorphs.

/// Acquires and returns a bunny.
pub fn bunny() -> &'static str {
    "🐇"
}

/// Acquires and returns a rabbit.
pub fn rabbit() -> &'static str {
    "🐰"
}