> 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/value/literal/literal.value.md).

# Literal.value

## Query Example

```python
from glider import *


def query():
    functions = (
        Functions()
        .with_name("mul")
        .exec(1)
    )
    instructions = functions[0].instructions().exec()
    for instruction in instructions:
        for component in instruction.get_components():
            if isinstance(component, Literal):                  
                print(component)
                print(component.value)

              
    return [instructions[0]]
```

## Example Output

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