RosettaCodeData/Task/Repeat/Prolog/repeat.pro

9 lines
189 B
Prolog
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
repeat(_, 0).
repeat(Callable, Times) :-
succ(TimesLess1, Times),
Callable,
repeat(Callable, TimesLess1).
test :- write('Hello, World'), nl.
test(Name) :- format('Hello, ~w~n', Name).