/// 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);
}