Skip to content

Instantly share code, notes, and snippets.

@MarcelineVQ
Created August 11, 2019 03:44
Show Gist options
  • Select an option

  • Save MarcelineVQ/53167d556af23ffdd0699ed513a0f0c4 to your computer and use it in GitHub Desktop.

Select an option

Save MarcelineVQ/53167d556af23ffdd0699ed513a0f0c4 to your computer and use it in GitHub Desktop.
module Main where
{-# NOINLINE foo #-}
foo :: String
foo = "hello"
foo2 :: String
foo2 = "goodbye"
main :: IO ()
main = print foo
{-# RULES
"foo/foo2" foo = foo2
#-}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment