Created
September 3, 2019 19:48
-
-
Save lasseebert/ed07932c52b7a863d22c48dcb0e4ec7a to your computer and use it in GitHub Desktop.
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
@spec c() :: :ok | :error | |
def c do | |
case a() do | |
:ok -> | |
:ok = b() | |
:ok | |
:error -> | |
:error | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment