From a6d64ff827acef385db8ba2db0573f677eaaf4d3 Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Sun, 24 Dec 2023 14:11:49 -0500 Subject: [PATCH] Change grammar --- src/ludus/grammar.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ludus/grammar.cljc b/src/ludus/grammar.cljc index 47e0978..334c491 100644 --- a/src/ludus/grammar.cljc +++ b/src/ludus/grammar.cljc @@ -229,7 +229,7 @@ (defp loop-expr group order-1 [(quiet :loop) tuple (quiet :with) (flat (choice :loop-body [fn-clause compound-loop]))]) -(defp repeat-expr group order-1 [(quiet :repeat) (choice :times [:word :number]) block]) +(defp repeat-expr group order-1 [(quiet :repeat) (choice :times [:word :number]) non-binding]) (defp collection flat choice [;struct-literal dict list-literal set-literal tuple])