Skip to content

Instantly share code, notes, and snippets.

@KeenS
Created August 19, 2015 14:12
Show Gist options
  • Save KeenS/dfaf8a2e865d048b2694 to your computer and use it in GitHub Desktop.
Save KeenS/dfaf8a2e865d048b2694 to your computer and use it in GitHub Desktop.
fizzbuzz(N, R) :-
fizzbuzz_(N, R);
fizz_(N, R);
buzz_(N, R);
N = R.
fizz_(N, R) :-
0 is N mod 3,
R = fizz.
buzz_(N, R) :-
0 is N mod 5,
R = buzz.
fizzbuzz_(N, R) :-
0 is N mod 15,
R = fizzbuzz.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment