Skip to content

Instantly share code, notes, and snippets.

@showyou
Created May 2, 2010 04:58
Show Gist options
  • Select an option

  • Save showyou/386913 to your computer and use it in GitHub Desktop.

Select an option

Save showyou/386913 to your computer and use it in GitHub Desktop.
fb(101).
fb(N) :-
N mod 15 =:= 0, write('fizzbuzz'), fb2(N).
fb(N) :-
N mod 3 =:= 0, write('fizz'), fb2(N).
fb(N) :-
N mod 5 =:= 0, write('buzz'), fb2(N).
fb(N) :-
write(N), fb2(N).
fb2(N) :-
format('~n'), N1 is N+1,fb(N1).
:- fb(1).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment