# Keywords

| Word       | Use                                                     |
| ---------- | ------------------------------------------------------- |
| `assert`   | Make certain a value is true.                           |
| `require`  | Make certain variables are present.                     |
| `import`   | Obtains the output of an external program.              |
| `if`       | Run a statement on a condition.                         |
| `while`    | Continually run a statement on a condition.             |
| `for`      | Run a statement for every element in a collection.      |
| `do`       | Runs code in the context of an object.                  |
| `run`      | Run an executable object.                               |
| `struct`   | Create a data structure with a fixed set of properties. |
| `function` | Creates an executable object to run a statement.        |
| `syntax`   | Defines new syntax available in the current script.     |
| `null`     | The empty value.                                        |
| `false`    | The false value.                                        |
| `true`     | The true value.                                         |


---

# 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://craftscript.kenzie.mx/syntax/keywords.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.
