Skip to content

Instantly share code, notes, and snippets.

@abuiles
Created August 5, 2009 01:04
Show Gist options
  • Save abuiles/162412 to your computer and use it in GitHub Desktop.
Save abuiles/162412 to your computer and use it in GitHub Desktop.
{-# LANGUAGE ImplicitParams #-}
bar :: (?test :: Int) -> (?test2 :: Int) -> Int
bar = ?test - ?test2
foo = let ?test = 3
?test2 = 4
in
bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment