> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sparkle.bot/llms.txt
> Use this file to discover all available pages before exploring further.

# Hello World

Dans cette exemple, nous allons créer une commande simple qui affiche un message.

```js theme={null}
export default createCommand({
  alias: ["hello"],
  run: async (_, ctx) => {
    ctx.twitch.sendMessage({
      message: "Hello World",
    })
  },
})
```
