> For the complete documentation index, see [llms.txt](https://docs.cheddar.vihan.org/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cheddar.vihan.org/docs/developing/api/primitives/string.md).

# string

The string class for Cheddar

## Arguments:

| name    | type   | description       |
| ------- | ------ | ----------------- |
| `value` | string | The literal value |

## Usage:

`"foo"`, with api:

```javascript
cheddar.init(
    cheddar.string,
    "foo"
)
```
