2.3 KiB
Lines of Code
Lines of code (LOC, KLOC = 10K LOC, MLOC = 1M LOC etc., also SLOC = source LOC) is a metric of software complexity that simply counts the number of lines of program's source code. It is by no means a perfect measure but despite some soyboys shitting on it it's actually pretty good, especially when using only one language (C) with consistent formatting style. However it must also be used well -- here are the main caveats:
- Logarithmic scale should be used, i.e. rather than exact line count we should sort into categories such as: under 10 LOC, under 100 LOC, under 1000 LOC and so on.
- When you use it as a productivity measure at work, you're guaranteed your devs are gonna just shit our as much meaningless code as possible in which case the measure fails again. Here also the logarithmic scale doesn't make much sense, so basically using it as a performance measure just sucks. Fortunately, at LRS we don't have such problems :)
- Of course it also becomes shitty when you have a project in 20 programming languages written by 100 pajeets out of which every one formats code differently.
Of course it may also be necessary to define what a "line of code" means. Usually we distinguish raw lines (every single one) and logical lines (only those that "matter", may exclude comments and empty lines). We may also have to decide if we count lines of libraries we use etc.
A comfy tool for counting lines is cloc
, but you can also just use wc -l
to count raw lines.
Here are (sometimes very) approximate line counts for some programs written (mainly) in C, in ascending order: hello world (~5), brainfuck interpreter (~50), Fairy-Max chess (~1000), raycastlib (~2000), dwm (~2500), SAF (~5000), Anarch (~15000), tcc (~25000), Lua (~30000), Doom (~35000), Quake (~100000), Pokemon Emerald (~500000), OpenBSD (~10000000), Linux (~30000000), Windows XP (~40000000).