Back to Freecodecamp

Task 25

curriculum/challenges/english/blocks/learn-how-to-document-code-for-a-project/65e870a2ad67264ba3aac3f6.md

latest1.9 KB
Original Source
<!-- (Audio) Brian: Great idea. To write comments, you simply need to use double slashes to start a comment. -->

--description--

In this task, you'll learn the difference between simple and simply, and understand what double and slashes mean.

Simple is an adjective meaning easy or not complicated, like a simple task. Simply is an adverb, meaning in a simple manner, like doing something simply.

Double means two of something. And slashes are the / symbols used in writing. You add es to make slash plural because words ending in sh form their plurals by adding es, like in dishes or brushes.

--fillInTheBlank--

--sentence--

Great idea. To write comments, you BLANK need to use BLANK BLANK to start a comment.

--blanks--

simply

--feedback--

It means in an easy or straightforward manner. Brian uses it to describe the ease of writing comments.


double

--feedback--

It refers to using two of something. In this context, it means using two slashes.


slashes

--feedback--

These are the / symbols. For words ending in sh you should add es for the plural.

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Brian",
        "position": {
          "x": 50,
          "y": 15,
          "z": 1.2
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "7.1-2.mp3",
      "startTime": 1,
      "startTimestamp": 6.24,
      "finishTimestamp": 11.36
    }
  },
  "commands": [
    {
      "character": "Brian",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Brian",
      "startTime": 1,
      "finishTime": 6.12,
      "dialogue": {
        "text": "Great idea. To write comments, you simply need to use double slashes to start a comment.",
        "align": "center"
      }
    },
    {
      "character": "Brian",
      "opacity": 0,
      "startTime": 6.62
    }
  ]
}