> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/instructions/instructions.entry_point_instructions.md).

# Instructions.entry\_point\_instructions()

Returns an Instructions object for the 'entry point' instructions

`entry_point_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

The [Instructions](/glider-ide/api/instructions.md) object returned includes all entry points to functions.

## Query Example

```python
from glider import *


def query():
  return Instructions().entry_point_instructions().exec(1)
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FexBg3SDYqw2cr4deMbiI%2Fimage.png?alt=media&amp;token=83805ae0-33ab-4a64-91ba-38e908f6761e" alt=""><figcaption></figcaption></figure>

As this returns the entry point to the function, the "sol\_instruction" field contains the function body.
