flosse / sloc

simple tool to count SLOC (source lines of code)
MIT License
943 stars 84 forks source link

Add support for the Zig programming language #147

Closed zwrawr closed 2 months ago

zwrawr commented 2 months ago

Referenced from https://ziglang.org/documentation/master/#Comments

Zig has three comment types all single line (// , /// , //!). We can just consider the // case as it catches the other two. There are no multiline comments.

I have alphabetized a couple of extensions.

flosse commented 2 months ago

Thx!