Prints out the arguments to standard output.
Echo is often used to pass on parameters to other commands' inputs, since it writes out to standard output, its output can be piped to another command's input stream.
# Prints "Hello" to the screen
echo "Hello"