Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 19, 2019 23:11
Show Gist options
  • Save Tombarr/ebb5dcb98dcfb42caf5ec964c88a359f to your computer and use it in GitHub Desktop.
Save Tombarr/ebb5dcb98dcfb42caf5ec964c88a359f to your computer and use it in GitHub Desktop.
Case statement in Elixir
case (Date.utc_today |> Date.day_of_week) do
0 -> "Sunday"
1 -> "Monday"
_ -> "Some other day..."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment