This article shows that a large part of the core of GIT can be re-implemented in a few lines of code (copy all the code).
+
This article shows that a large part of the core of GIT can be re-implemented in a few source lines of code* (copy all the code). * empty lines and single closing braces excluded, a few more in total.
@@ -1497,7 +1497,8 @@ store_index(['README', 'src/main.scm']);
}
}
___process_elements();
- document.getElementById('loc-count').innerText = ___get_all_code().split('\n').length;
+ document.getElementById('loc-count').innerText = ___get_all_code().split('\n').filter(function (l) { return ! (/^(\s*}?)?$/.test(l)); }).length;
+ document.getElementById('loc-count-total').innerText = ___get_all_code().split('\n').length;
\ No newline at end of file