Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module Main where
- import Lib
- data ProductionEnvironment = ProductionEnvironment
- instance Environment ProductionEnvironment where
- getUserName _ = "Admin"
- getUserAge _ = 30
- main :: IO ()
- main = putStrLn . makeGreeting $ ProductionEnvironment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement