dart 多行注释

示例

/*和之间的所有*/内容均已评论。

void main() {
  for (int i = 0; i < 5; i++) {
    /* This is commented, and
    will not affect code */
    print('hello ${i + 1}');
  }   
}