# 註釋

您可以在您的程式中使用 `;` 來添加註釋。從 `;` 到行尾的一切內容將被忽略。這對於解釋程式碼非常有用，它能夠幫助您以邏輯方式瀏覽和追蹤程式碼。

以下程式碼展示了註釋的使用：

```basic
; Redraw 函式的開始
Function Redraw()
    ...
End Function 
```

以下程式碼展示了註釋的另一種使用方式：

```basic
Function Redraw() ; Redraw 函式的開始
    ...
End Function
```


---

# 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://gitbook.ziyuesinicization.site/blitz-basic-language-reference/zh_hant/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.
