Write a function echo
that always prints what is passed as a parameter to the function.
The same text is printed that is given between the brackets of the function.
Example notation
This notation imitates the doctest format, where the input is preceded by
>>>
and the output is against the left margin.
>>> echo("Hello world!")
"Hello world!"
>>> echo(5)
5