Created
June 28, 2016 21:02
-
-
Save ngnguyen1/305035c39c2438ddef37a5cf292bdf15 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
-module(mutual_recursion). | |
-compile([export_all]). | |
even(1) -> false; | |
even(X) -> odd(X-1). | |
odd(1) -> true; | |
odd(X) -> even(X-1). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment