> For the complete documentation index, see [llms.txt](https://cooffeerequireds.gitbook.io/skript-gson/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cooffeerequireds.gitbook.io/skript-gson/foundations/printing.md).

# Printing

Official docs of Skript-gson

Example of Printing - with **print screen**

{% hint style="info" %}
**Storage - Json file**
{% endhint %}

```json
{
    "playerdata": {
        "name": "player",
        "health": 20,
        "some": "Example",
        "array": ["somedataHere", false, true, null]
    }
}
```

{% hint style="success" %} <mark style="color:green;">**With pretty print**</mark>
{% endhint %}

```vbnet
options:
    storage: json from file "plugins/YourAwesome/storage.json"

on load:
    broadcast {@storage}  with pretty print
```

<figure><img src="https://3175344774-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeOzNSvXM3VutmhtZ1OMy%2Fuploads%2FFqFYQUeQTfXWjSEKQX5m%2FSn%C3%ADmek%20obrazovky%202022-10-31%20223053.png?alt=media&amp;token=f5b5d59d-80d7-426a-9883-8c05a213bf6e" alt=""><figcaption></figcaption></figure>

{% hint style="danger" %}
Without pretty print
{% endhint %}

```vbnet
options:
    storage: json from file "plugins/YourAwesome/storage.json"

on load:
    broadcast {@storage}
```

<figure><img src="https://3175344774-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeOzNSvXM3VutmhtZ1OMy%2Fuploads%2F4ZYkU83lrcsHdWp3qCcR%2FSn%C3%ADmek%20obrazovky%202022-10-31%20223235.png?alt=media&amp;token=c07e6ef0-1cc4-472b-89b5-14a06cfbe88c" alt=""><figcaption></figcaption></figure>
