Comments - Block
Not Started

I won't make a habit out of it, but I lied. There's another way to write comments called multiline comments. They're useful when you want to comment out multiple lines together.

To create a multiline comment, use /* to start the comment block and */ to end the comment block.

/* This is a multline comment. It wraps multiple lines! */

Okay, now you know ALL the ways to comment. Give the challenge below a try!

Challenge

Use the multiline block comment technique to comment out the todo list.