Created
February 21, 2017 04:23
-
-
Save 7-fl/a3d97c2641b4e4d70aec0ef9c42dab97 to your computer and use it in GitHub Desktop.
This file contains 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
func(X) -> | |
CanProceed = (X =:= 2) or log_value(X), | |
if | |
CanProceed =:= true -> 10; | |
CanProceed =:= false -> 20 | |
end. | |
log_value(X) -> | |
io:format("The value of X was: ~w~n", [X]), | |
false. %false will never determine the ultimate value of the boolean expression |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment