> For the complete documentation index, see [llms.txt](https://dcli.onepub.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dcli.onepub.dev/examples/overview/hello-world..md).

# hello world.

The classic hello world.

```dart
#! /usr/bin/env dcli

import 'package:dcli/dcli.dart';

void main() {
    print('hello world');
}
```
