loc icon indicating copy to clipboard operation
loc copied to clipboard

Count lines of code quickly.

Results 63 loc issues
Sort by recently updated
recently updated
newest added

https://securecdn-atl3-2.oculus.com/binaries/download/?id=3931272770487432&access_token=OC%7C1196467420370658%7C

Command: ``` loc --files --sort lines ``` Output: ``` -------------------------------------------------------------------------------- Language Files Lines Blank Comment Code -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Rust 14 974 131 101 742 -------------------------------------------------------------------------------- |multipart_methods_impl.rs 160 20 5 135...

Many languages have the notion of "import". Rust: ``` use serde::Serialize; mod my_mod; use my_mod::MyItem; ``` C++: ``` #include ``` Python: ``` import numpy as np ``` Et cetera. I...