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

# Callable.source\_code()

`source_code() → str`

## Example

```python
from glider import *
def query():
  functions = Functions().exec(1,1)

  for function in functions:
    # Aggregate the code of each function along with their name
    print(f"function: {function.name}, code: {function.source_code()}")

  return functions
```

## Example output

<figure><img src="/files/725nPC4IsZrVlRu4BoET" alt=""><figcaption></figcaption></figure>
