Files
scryer-prolog/tests-pl/discussion3359.pl
2026-06-03 22:05:20 +02:00

11 lines
182 B
Prolog

:- use_module(library(clpz)).
:- use_module(library(tabling)).
:- table expr//0.
expr --> "1".
expr --> expr, "+", expr.
run :- phrase(expr, "1+1+1+1+1").
:- initialization(run).