> 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/callable/callable.entry_point_instructions.md).

# Callable.entry\_point\_instructions()

Returns entry\_point instructions of the function/modifier.

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

The entry\_point of a function is not a "real" instruction, but rather an abstract instruction representing the starting point of the function.

## Example

```python
from glider import *
def query():
  functions = Functions().exec(100)

  entry_points = []
  for function in functions:
    for entry_point_instruction in function.entry_point_instructions().exec():
      # For each function, return entry points
      entry_points.append(entry_point_instruction)

  return entry_points
```

## Example output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2Fs0VQ3U6HqkEQDUwuUBDb%2Fimage.png?alt=media&amp;token=97ffab2b-8cea-4556-87e8-196cbd027a3d" alt=""><figcaption></figcaption></figure>
