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

# ArgumentVariable.source\_code()

`source_code() → str`

## Query Example

```python
from glider import *

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

  for func in functions:
    args = func.arguments()
    print(args.list()[0].get_variable().source_code())

  return functions
```

## Example Output

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