A program can't tell you what it's doing unless you ask it to.
In Kotlin we ask using println, which prints a message and then moves to the next line.
Write a snippet of code—not a function—that prints exactly this:
Welcome to CS 124!
You'll need to type the whole print statement yourself, including the message, which is a
String and so belongs inside double quotes.