This file is indexed.

/usr/lib/help/gensym 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
16
S9fES  (gensym symbol)  ==>  symbol
       (gensym string)  ==>  symbol
       (gensym)         ==>  symbol

Return a fresh symbol that is guaranteed to be unique. When SYMBOL
or STRING is passed to GENSYM, the returned symbol will have its
characters as a prefix.

(gensym)        ==>  g56
(gensym "foo")  ==>  foo57
(gensym 'bar)   ==>  bar58

(let ((a (gensym))
      (b (gensym))
      (c (gensym)))
  (list a b c))      ==>  (g63 g62 g61)