pub fn boolean_to_string(b: bool) -> String
Implement a function which convert the given boolean value into its string representation.
boolean_to_string(true); returns “true”
boolean_to_string(true);