Codebase list ohcount / fresh-snapshots/main test / src_dir / foo.dart
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

foo.dart @fresh-snapshots/mainraw · 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 */
}