> 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/variables/argumentvariable/argumentvariable.index.md).

# ArgumentVariable.index

`property data: Dict`

## Query Example

```python
from glider import *


def query():
  functions = (
    Functions()
    .exec(1, 50)
  )

  for func in functions:
    args = func.arguments()
    print(f"Argument index: {args.list()[0].get_variable().index}")
    
  return functions
```

## Example Output

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