> 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/value/call/call.get_arg.md).

# Call.get\_arg()

`get_arg(i: int) -> Union[`[`Value`](/glider-ide/api/value/value.md)`,` [`NoneObject`](/glider-ide/api/internal/noneobject.md)`]`

## Query Example

```python
from glider import *

def query():
    instructions = (
        Instructions()
        .with_callee_name("require")
        .calls()
        .exec(10)
    )

    for ins in instructions:
        call = ins.get_value()
        if isinstance(call, Call):
            print(call.name)
            print(call.get_arg(0).expression)
            print(call.get_arg(1).expression)

    return instructions
```

## Output Example

<figure><img src="/files/4Pt0njcl2FCJWpUGGzqs" alt=""><figcaption></figcaption></figure>
