/usr/share/codeblocks/lexers/lexer_d.sample is in codeblocks-common 10.05-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | /*
* Sample preview code
* This is a block comment
*/
/++
A Super Block
++/
import std.file;
/**
* This is a documentation comment block
* @param xxx does this (this is the documentation keyword)
* @authr some user (this is the documentation keyword error)
*/
int main(char[] args)
{
/// This is a documentation comment line
int[20] numbers;
int average = 0;
char ch = '\n';
for (int i = 0; i < 20; ++i) // a breakpoint is set
{
numbers[i] = i; // active line (during debugging)
total += i; // error line
}
average = total / 20;
printf("%d\n%d\n", numbers[0], numbers[19]);
printf("total: %d average: %d\n", total, average);
}
|