Multi-Line Comment

suggest change

Everything between /* and */ is commented.

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

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents