blob: 7834de52bcccec54bf4b97a7c19d005f76a86786 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{-# LANGUAGE Safe #-}
-- | Import SYB stuff that should be safe
module Main where
import Data.Typeable
import Data.Dynamic
import Data.Data
f :: Int
f = 2
main :: IO ()
main = putStrLn $ "X is: " ++ show f
|