Created
February 21, 2017 03:58
-
-
Save 7stud/a9704df542e50cbeef167b39622e70f5 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. %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