├── .ghci ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── exe └── Main.hs ├── src └── Interpolation.hs └── typed-interpolation.cabal /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/.ghci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/README.md -------------------------------------------------------------------------------- /exe/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/exe/Main.hs -------------------------------------------------------------------------------- /src/Interpolation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/src/Interpolation.hs -------------------------------------------------------------------------------- /typed-interpolation.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/typed-interpolation/HEAD/typed-interpolation.cabal --------------------------------------------------------------------------------