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

# Callable.signature()

`signature() → str`

## Example

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

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

  return functions
```

## Example output

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