> For the complete documentation index, see [llms.txt](https://trizen.gitbook.io/perl6-rosettacode/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://trizen.gitbook.io/perl6-rosettacode/programming_tasks/e/empty_program.md).

# Empty program

The empty program is valid and does nothing but return a successful exit code:

It is also possible to just specify that the program is written in Raku:

```perl
use v6;
```

or even:

```perl
v6;
```
