> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/commands/debugging/log-hello-world.md).

# log value

In OSL you can use the `log` command in the same way that the `print` function is used in Python, or the `console.log` method is used in JavaScript. It prints a value so you can inspect it while developing.

```javascript
log "hello world"
// hello world
```
