Implement a function which convert the given boolean value into its string representation.
Note: Only valid inputs will be given.
def boolean_to_string(b)
b.to_s
end
Implement a function which convert the given boolean value into its string representation.
Note: Only valid inputs will be given.
def boolean_to_string(b)
b.to_s
end