Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/usr/bin/env stack
  2. {- stack runghc -}
  3.  
  4. f :: (a -> IO ()) -> IO ()
  5. f f' = do
  6.    f' "asdf"
  7.     f' 6
  8.  
  9. main :: IO ()
  10. main = f print
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement