Advertisement
Guest User

Untitled

a guest
Feb 13th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import Data.Maybe
  2.  
  3. love :: Maybe string -> Maybe string -> Maybe string
  4. love x y
  5.     | (x == Just "me") and (y == Just "you") = Just "always"
  6.     | otherwise = Nothing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement