Function test_package::welcome
source · pub fn welcome(name: &str, age: u8)
Expand description
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)
Prints a semi-individual heartwarming message
#Example
use test_package::welcome;
let name = "Gabriel";
let age = 20;
welcome(name, age);