# Parser

This library is a function for parsing text into a runnable script object.

The script object is not loaded into the environment but can be run with the `run` statement.

```java
import [parser]

script = run parser "/say hello"
run script
```
