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
- Host: GitHub
- URL: https://github.com/ariafallah/ppx_str
- Owner: AriaFallah
- License: mit
- Created: 2018-09-24T06:11:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-17T23:27:28.000Z (over 7 years ago)
- Last Synced: 2025-06-07T22:42:55.341Z (about 1 year ago)
- Language: OCaml
- Homepage:
- Size: 16.6 KB
- Stars: 14
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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}|}
]
```