> 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()

`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="/files/4AIqUC6kHloJyoz1lVog" alt=""><figcaption></figcaption></figure>
