Codebase list ohcount / 3ecf732 test / src_dir / foo.dart
3ecf732

Tree @3ecf732 (Download .tar.gz)

foo.dart @3ecf732raw · history · blame

1
2
3
4
5
6
7
8
9
void main() {
  // Line comment

  /* Block
     comment */

  print("Hello!"); // Code with line comment
  print("World!"); /* Code with block comment */
}