Skip to content

Instantly share code, notes, and snippets.

@monzou
Created June 30, 2012 09:29
Show Gist options
  • Save monzou/3023101 to your computer and use it in GitHub Desktop.
Save monzou/3023101 to your computer and use it in GitHub Desktop.
import Control.Applicative
-- <$> は fmap の中置関数
main = print $ filter (>50) $ (*) <$> [2, 5, 10] <*> [ 8, 10, 11 ] -- [ 55, 80, 100, 110 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment