Multiline comments start with /* symbols and end with */ symbols. Such comments cannot be nested. Single comments start with // symbols, end with the symbol of a new line and can be nested into multiline comments. Comments are allowed where blank spaces are possible and tolerate any number of spaces.
複数行のコメントは、始めに /* 記号との末尾に */ 記号を記載します。 このコメントは入れ子にできません。 単一のコメントは、始めに // 記号、終わりは改行記号です。また、複数行コメントに入れ子にすることができます。 コメントは空白が可能で、任意の数のスペースを使用できます。
Examples:
例:
1 2 3 4 5 6 7 8 9 10 | // single comment // 単一コメント /* multi- 複数 line // nested single comment 行の // 入れ子された単一コメント comment コメント */ |