codestats 0.6.0

A CLI tool for analyzing code statistics across different programming languages
1
2
3
4
5
6
7
8
9
10
11
12
13
// expect: total=13 code=6 comment=4 blank=3 shebang=0
/* Top-level multiline comment
   continues here */

package utils {
	public function inc(n: int): int {
		return n + 1;
	}
}

// Another pure comment line.

trace(inc(10));