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

# Callable.continue\_instructions()

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

## Example

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

  continue_instructions = []
  for function in functions:
    # List all continue instructions inside the given functions
    for instruction in function.continue_instructions().exec():
      continue_instructions.append(instruction)

  return continue_instructions
```

## Example output

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