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

# ExternalPoint.source\_code()

`source_code() → str`

## Query Example

```python
from glider import *

def query():

    functions = (
        Functions()
        .with_name("transferFrom")
        .exec(1)
    )

    arguments = functions[0].arguments()
    print(arguments.list()[0].get_variable())
    print(arguments.list()[0].source_code())

    return functions
```

## Output Example

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