# Comments

Most languages have two concepts of comments: single-line and multi-line. Budgie supports both.

## Single Line Comments

Use the `comment line` command. It takes in any number of parameters and directly outputs them.

```
comment line : Hello world!
```

* In C#: `// Hello world!`
* In Python: `# Hello world!`

## Multi Line Comments

Also known as "block" comments, these are preceded by `comment block start` and ended with `comment block end`. Each line of actual block content comes from `comment block`, which, like `comment line`, directly prints all its parameters.

```
comment block start
comment block : Hello world!
comment block end
```

In C#:

```csharp
/*
 * Hello world!
 */
```

In Python:

```python
"""
Hello world!
"""
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.budgielang.org/syntax/comments.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
