Skip to content
void.Install void

Introduction.

Docs

What void is, what it does and what it will never do.

void is a function that takes nothing and returns nothing. It has no configuration, no runtime and no state. These docs describe all of it.

When to use it

Reach for void whenever you need a dependency that changes nothing: placeholders, benchmarks, or a product launch with a very short diff.

What it does not do

  • It does not read input.
  • It does not write output.
  • It does not schedule work, open sockets or touch the file system.

Continue with Installation.

shipped