This file is indexed.

/usr/share/doc/chuck/examples/type/type_primitives.ck is in chuck 1.2.0.8.dfsg-1.4.

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
// quick survey of chuck primitives

// <<<>>> will print the type and value of any variable; 

// integers 
1 => int i; 
<<<i>>>;
// modify value and print again...
2 => i;
<<<i>>>;

// hexadecimal notation
0x22 => i;
<<<i>>>;

// floats 
5.678 => float f; 
<<<f>>>;

// durations are a measure of time 
// the value we print will be in audio samples. 

9.0::second => dur d; 
<<<d>>>;

now => time t; 
<<<t>>>;

// we advance time, and now will change to reflect 
<<<"waiting 10 seconds...">>>;
10::second => now;
<<<now>>>;