Skip to content

Instantly share code, notes, and snippets.

@snorremd
Last active December 13, 2015 21:48
Show Gist options
  • Save snorremd/4980168 to your computer and use it in GitHub Desktop.
Save snorremd/4980168 to your computer and use it in GitHub Desktop.
fizzbuzz(100):-
write_ln('Buzz').
fizzbuzz(N):-
(0 is N mod 3,
0 is N mod 5,
write_ln('FizzBuzz');
0 is N mod 3,
write_ln('Fizz');
0 is N mod 5,
write_ln('Buzz');
write_ln(N)),
N1 is N + 1,
fizzbuzz(N1).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment