Files
scryer-prolog/tests-pl/syntax_error.pl
2021-03-11 16:16:31 +01:00

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).