Skip to content

Instantly share code, notes, and snippets.

@bsima
Created March 16, 2017 23:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bsima/e848ad6f3023f81f67902212f6bf8138 to your computer and use it in GitHub Desktop.
Save bsima/e848ad6f3023f81f67902212f6bf8138 to your computer and use it in GitHub Desktop.
halp
type alias VenueId =
String
type alias Venue =
{ id : VenueId
, name : String
}
type alias HappyHour =
{ venueId : Int
, start : Time
, end : Time
}
f : List HappyHour -> Dict VenueId HappyHour
f hhs = ??
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment