Skip to content

Instantly share code, notes, and snippets.

@cblp
Last active February 27, 2019 12:35
Show Gist options
  • Save cblp/430e210435dde653269a2be65983a837 to your computer and use it in GitHub Desktop.
Save cblp/430e210435dde653269a2be65983a837 to your computer and use it in GitHub Desktop.
Run as `./Interpolate.hs`
Привет, #{world}!
#!/usr/bin/env stack
-- stack --resolver=lts-13.0 script
{-# LANGUAGE TemplateHaskell #-}
import Data.String.Interpolate (i)
import Language.Haskell.TH.Quote (quoteExp, quoteFile)
main = putStr $(quoteExp (quoteFile i) "hello.txt") where
world = "мир"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment