Skip to content

Instantly share code, notes, and snippets.

@ngnguyen1
Created June 28, 2016 21:02
Show Gist options
  • Save ngnguyen1/305035c39c2438ddef37a5cf292bdf15 to your computer and use it in GitHub Desktop.
Save ngnguyen1/305035c39c2438ddef37a5cf292bdf15 to your computer and use it in GitHub Desktop.
-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