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
14
// expect: total=14 code=8 comment=3 blank=3 shebang=0
// simple csharp fixture

using System;

/* comment block */

namespace Example {
	class Program {
		static void Main() {
			Console.WriteLine("hi");
		}
	}
}