Current section
Files
Jump to
Current section
Files
README.md
# heredoc
[](https://hex.pm/packages/heredoc)
[](https://hexdocs.pm/heredoc/)
```sh
gleam add heredoc@1
```
```gleam
import heredoc
pub fn main() -> Nil {
heredoc.heredoc("
This string will be unindented.
It will not have any leading spaces.
Except for this line, which is extra indented.
")
}
```
Further documentation can be found at <https://hexdocs.pm/heredoc>.
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```