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

# Callable.try\_instructions()

Returns try instructions of the function/modifier.

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

## Query Example

```python
from glider import *


def query():
  functions = Functions().with_name("processFee").exec(1)

  try_instructions = []
  for function in functions:
    for instruction in function.try_instructions().exec():
      # Return the try instructions for each function
      try_instructions.append(instruction)

  return try_instructions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FUt6eY9CTE6e6XlktJL0d%2FScreenshot%202025-08-25%20at%203.42.31%E2%80%AFPM.png?alt=media&amp;token=dc5a8579-1b20-4c66-b5a6-baae30631203" alt=""><figcaption></figcaption></figure>
