- Hello, Cleveland.
- 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
- Learn how to use the formatting code
\n
so that Ox will print out each line of dialogue separately with only oneprintln()
statement. - 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 toHELLO, CLEVELAND
. Use it in your code.
- Modify