This file is indexed.

/usr/share/codeblocks/lexers/lexer_ada.sample is in codeblocks-common 10.05-2.1.

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
with ada.text_io;
procedure HALLO_01 is
	VOR : character;
	NACH : character;
begin
	ada.text_io.put(item => "Bitte geben Sie Ihre Initialen (z.B. AB) ein: ");
	ada.text_io.get(item => VOR);
	ada.text_io.get(item => NACH);
	ada.text_io.put(item => "Hallo " & VOR & NACH & ", wie geht es?");
	ada.text_io.new_line;
end HALLO_01;