instead of
q :- a, b, c, d, e. p :- a, b, c, d, e. r :- a, b, c, d, e.
I'd be way happier writing
p, q, r :- a, b, c, d, e.
for DRY reasons
https://github.com/users/robsimmons/projects/1/views/1?pane=issue&itemId=66274463