On this page:
void?
void

4.18 Void and Undefined

The constant #<void> is returned by most forms and procedures that have a side-effect and no useful result. The constant #<undefined> is used as the initial value for letrec bindings.

The #<void> value is always eq? to itself, and the #<undefined> value is also eq? to itself.

procedure

(void? v)  void?

  v : any/c
Returns #t if v is the constant #<void>, #f otherwise.

procedure

(void v ...)  void?

  v : any/c
Returns the constant #<void>. Each v argument is ignored.