7 lines
155 B
Prolog
7 lines
155 B
Prolog
:- use_module(library(debug)).
|
|
:- use_module(library(format)).
|
|
|
|
missing_dot :- write('No "." at the end of the line'), nl
|
|
|
|
:- initialization(missing_dot).
|