> 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.expression_instructions.md).

# Callable.expression\_instructions()

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

## Example

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

  expressions = []
  for function in functions:
    for exp_instruction in function.expression_instructions().exec():
      # For each function, return the expressions
      expressions.append(exp_instruction)

  return expressions
```

## Example output

<figure><img src="/files/FviE8il4IK2t0sPbHfIF" alt=""><figcaption></figcaption></figure>
