Merge branch 'master' into interrupt_test

This commit is contained in:
Danil Platonov
2026-06-04 12:08:36 -07:00
committed by GitHub
11 changed files with 236 additions and 115 deletions

View File

@@ -0,0 +1,11 @@
:- 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).