Nimber arithmetic: Difference between revisions

Content added Content deleted
m (→‎{{header|Raku}}: Simplify, style tweaks)
m (Prolog: call/1 is unnecessary)
Line 641: Line 641:
writef('%3r |', [B]),
writef('%3r |', [B]),
Goal =.. [Function, A, B, C],
Goal =.. [Function, A, B, C],
forall(between(0, N, A), (call(Goal), writef('%3r', [C]))),
forall(between(0, N, A), (Goal, writef('%3r', [C]))),
nl.
nl.