1:- encoding(utf8).
    2:- module(test, [test/0]).

Test library

This is a simple test library that exports one public predicate.

*/

   10test :-
   11  format("Public predicate ‘test/0’ was successfully called.\n")