write writes words onto the page

Write takes one argument: the text you want to write. Wrap it up in quotes.

write "An awesome joke:"

If your text takes up more than one line, you can use a set of 3 quotes to include line breaks inside your text.

write """What's black and 
  white and red all over?"""

You can use HTML tags to decorate your writing.

write "<b>A sunburned zebra!</b>"
write """
  <font color="red">
  ouch!
  </font>
"""

Here is the list of all the colors you can use.