% hello3.pl:  A more general 'Hello, World!' rule.
% Note the multi-line formatting; that's common in Prolog rules.

hello(X) :- write('Hello, '),
            write(X),
            write('!').
