> 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/globalpoint/globalpoint.get_variable.md).

# GlobalPoint.get\_variable()

`get_variable() →` [`GlobalVariable`](/glider-ide/api/variables/globalvariables.md)

## Query Example

```python
from glider import *


def query():
    instructions = (
        Functions()
        .with_name("_msgSender")
        .exec(1)
        .instructions()
        .exec()
    )

    dfs = instructions.backward_df()
    for df in dfs:
      print(df.get_variable())
      print(df.source_code())

    return instructions
```

## Example Output

<figure><img src="/files/7XW0KTcxbsQ9IR4YUWPC" alt=""><figcaption></figcaption></figure>
