This file is indexed.

/usr/lib/help/queens is in scheme9 2013.11.26-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
S9 LIB  (queens n)  ==>  list

Solve the N-Queens puzzle using AMK. All solutions for the
given board size will be returned, where the offset in each
list is an X position on the board and the value at that
offset is the corresponding Y position. E.g., the board
(2 0 3 1) would look like this:

. . & . 3
& . . . 2
. . . & 1
. & . . 0
0 1 2 3

(queens 4)  ==>  ((2 0 3 1) (1 3 0 2))