Today I Learned

hashrocket A Hashrocket project

Reasonml Interpolation

Reasonml doesn't support string interpolation in it's primary string type, but for javascript interop they expose a

special tag quoted string interpolation

Using the {j| |j} operator and a $ for the variable.

It looks like this:

let name = "Chris";
let greeting = {j|Hi there $name|j};

Parens around the value also works:

let greeting = {j|Hi there $(name)|j};

Play with it more here

See More #reasonml TILs