Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. -module(dates).
  2. -author("unai").
  3.  
  4. %% API
  5. -export([classify_day/1]).
  6.  
  7. classify_day({saturday}) -> classify_day({weekend});
  8. classify_day({sunday}) -> classify_day({weekend});
  9. classify_day({weekend}) -> weekend;
  10. classify_day({_}) -> weekday.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement