1. Exercises for Prelude to a Mess
  1. Hello, Cleveland.
    1. Modify 01a-hello-world.ox to print out dialogue from a favorite movie or play. Have your code also display a link to the clip or the script.
      Example
      Your Ox code might produce
      David St. Hubbins:  ROCK AND ROLL!
      Derek Smalls:       HELLO, CLEVELAND!
      https://youtu.be/QiEglUjqWj0?t=103
      
    2. Learn how to use the formatting code \n so that Ox will print out each line of dialogue separately with only one println() statement.
    3. Find the Ox function that will convert a bit of text (called a string) to all upper case letters. That is, this Ox function will take hello, Cleveland and convert it to HELLO, CLEVELAND. Use it in your code.