The primary way you interact with a terminal is by running commands.
You start with a blank prompt and write something like the following.
$ echo Hello
HelloThe first word is the name of the program to run. In this case echo. Everything after
that is an "argument" to the program.