mirror of
https://github.com/nmattia/snack.git
synced 2025-01-07 13:47:09 +03:00
10 lines
186 B
Haskell
10 lines
186 B
Haskell
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
module Main where
|
|
|
|
import Data.FileEmbed
|
|
import qualified Data.ByteString.Char8 as BS8
|
|
|
|
main :: IO ()
|
|
main = BS8.putStrLn $(embedFile "assets/foo.txt")
|