Introduction
We use puts, print, and p to show messages on the screen, but they do it in slightly different ways.
When you want to show a message with a new line after it, use <code>puts</code>.
When you want to show a message without adding a new line, use <code>print</code>.
When you want to see the exact value of something, including quotes or special characters, use <code>p</code>.