An open API service indexing awesome lists of open source software.

https://github.com/ariafallah/ppx_str

PPX for template strings
https://github.com/ariafallah/ppx_str

Last synced: about 1 year ago
JSON representation

PPX for template strings

Awesome Lists containing this project

README

          

# PPX Str

Lets you do

```ocaml
let name = "aria"
let name2 = "ppx_str"

let my_str = [%str
{|Hello there {name} I am {name2} and {string_of_int 1}|}
]
```