Guest User

Untitled

a guest
Oct 17th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. module Lib where
  2.  
  3. -- Type
  4. -- []
  5.  
  6. type El = []
  7.  
  8. -- Methods
  9. pure :: a -> El a ; pure = undefined
  10. (<*>) :: El (a -> b) -> El a -> El b; (<*>) = undefined
Add Comment
Please, Sign In to add comment