This commit is contained in:
Basile Burg 2017-01-04 08:28:24 +01:00
parent dd92cc5bb4
commit 421cf48597
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
3 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ This must be used if the runnable outputs thousands of lines, to display properl
The version identifier **runnable_module** is automatically defined when a runnable is compiled.
It can be used to adjust the source according to the execution context, for example:
```D
```d
version(runnable_module)
{
stdout.writeln("to output stream");

View File

@ -17,7 +17,7 @@ Coedit implements the Halstead metric. The others may be added in a further vers
The metric uses the count and the sum of the functions operands and operators to compute several indexes. Even it's clearly related to the SLOC it's more accurate. For example:
```D
```d
void foo()
{
int a = 1, b;
@ -27,7 +27,7 @@ void foo()
Is seen as less complex than
```D
```d
void foo()
{
int a = 1, b;

View File

@ -32,7 +32,7 @@ The fields (-a -c -p -s) are optional but the _what_ is mandatory.
For example
```D
```d
// TODO: something.
// TODO-cfixes: something to fix.
// TODO-cfixes-aMrFreeze: something that MrFreezae has to fix.