packages feed

Bravo-0.1.0.1: src/Examples/Example02.hs

module Main (main) where

import Text.Bravo
import System.IO.Unsafe (unsafePerformIO)

import Example02Templates

main :: IO ()
main = return ()

-- Doing unsafe stuff here is allowed
unsafe :: String
unsafe = unsafePerformIO $ return "Hello world!"