Created
January 19, 2019 23:11
-
-
Save Tombarr/ebb5dcb98dcfb42caf5ec964c88a359f to your computer and use it in GitHub Desktop.
Case statement in Elixir
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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