remove _ in names
This commit is contained in:
parent
829db87c40
commit
3af7344581
1270 changed files with 0 additions and 18916 deletions
|
|
@ -1,13 +0,0 @@
|
|||
fizzbuzz :-
|
||||
foreach(between(1, 100, X), print_item(X)).
|
||||
|
||||
print_item(X) :-
|
||||
( 0 is X mod 15
|
||||
-> print('FizzBuzz')
|
||||
; 0 is X mod 3
|
||||
-> print('Fizz')
|
||||
; 0 is X mod 5
|
||||
-> print('Buzz')
|
||||
; print(X)
|
||||
),
|
||||
nl.
|
||||
Loading…
Add table
Add a link
Reference in a new issue