> 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/point/varvalue/varvalue.type.md).

# VarValue.type

property type: Type

## Query Example

```python
from glider import *


def query():
  instructions = Instructions().exec(1, 2)

  for instruction in instructions:
    components = instruction.get_components()
    for component in components:
      if isinstance(component, VarValue):
        var_value_type = component.type 
        print(var_value_type)

  return instructions
```

## Output Example

<figure><img src="/files/0hcz6BL5hsfnp4ZDOwnY" alt=""><figcaption></figcaption></figure>
