1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/// Prints a semi-individual heartwarming message
///
/// #Example
/// ```
/// use test_package::welcome;
/// let name = "Gabriel";
/// let age = 20;
///
/// welcome(name, age);
///  ```
pub fn welcome(name: &str, age: u8) {
    println!(
"Dear {},\nthank you for exploring the world of Rust,\
as a Rustaceans u will find your way to glory. With {} \
years you have plenty of time to fell for Rust over and over again.",
name, age);
}