📜  swift代码示例中的多行注释

📅  最后修改于: 2022-03-11 15:00:59.249000             🧑  作者: Mango

代码示例1
/* 
Multiline comments start
with a forward-slash followed by an asterisk (/*) and
end with an asterisk followed by a forward-slash (*/).
*/

/* 
You can write nested comments by 
starting a multiline comment block 
and then starting a second multiline comment within the first block. 
The second block is then closed, followed by the first block:
    /* This is a nested multiline comment in a multiline comment.
         /* This is the third, nested multiline comment. */
    This is the end of the second multiline comment. */
*/