Package

purescript-interpolate

Repository
jordanmartinez/purescript-interpolate
License
MIT
Uploaded by
pacchettibotti
Published on
2022-10-18T20:58:06Z

Latest release Build Status

Enables string interpolation for PureScript for values of 5 different types: String, Boolean, Int, Number, and Char. Credit goes to @natefaubion for original implementation. This project is a modified version of that implementation.

i "there are " 52 " apples." == "there are 52 apples."
i 52 " apples and " 0 " oranges." == "52 apples and 0 oranges."

value :: String
value =
  let
    variableName = 42
  in
    i "There are " variableName " apples."

Installation

spago install interpolate

Documentation

Module documentation is published on Pursuit.

Modules
Data.Interpolate
Dependencies