Skip to content

Instantly share code, notes, and snippets.

@NicolasT
Created September 16, 2015 10:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NicolasT/7ad255e9eca94be21315 to your computer and use it in GitHub Desktop.
Save NicolasT/7ad255e9eca94be21315 to your computer and use it in GitHub Desktop.
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE StandaloneDeriving #-}
module Langs where
import Data.Proxy
import GHC.TypeLits
data Language (code :: Symbol) where
English :: Language "en"
Dutch :: Language "nl"
French :: Language "fr"
deriving instance Show (Language code)
doSomething :: forall code. KnownSymbol code => Language code -> String
doSomething lang = "The code for " ++ show lang ++ " is " ++ show code
where
code = symbolVal (Proxy :: Proxy code)
main :: IO ()
main = do
putStrLn $ doSomething Dutch
putStrLn $ doSomething English
@dmjio
Copy link

dmjio commented Sep 16, 2015

Hot, I'm adding this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment