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

# ArgumentVariable.memory\_type

`property memory_type: str`

## Query Example

```python
from glider import *


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

  for func in functions:
    args = func.arguments()
    print(f"Memory type: {args.list()[0].get_variable().memory_type}")

  return functions
```

## Example Output

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