This file is indexed.

/usr/share/doc/basic256/examples/trig.kbs is in basic256 0.9.6.69a-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
12
13
14
15
16
17
18
19
20
21
22
clg
fastgraphics
for x = 1 to 4 * 3.14159 step 0.05
y = sin(x)
plot int(20*x), 150 + int(30*y)
next x

refresh

for x = 1 to 4 * 3.14159 step 0.05
y = cos(x)
plot int(20*x), 150 + int(30*y)
next x

refresh

for x = 1 to 4 * 3.14159 step 0.01
y = tan(x)
plot int(20*x), 150 + int(30*y)
next x

refresh