From 262aa0edf39376fddab1a8e1e0b06691fd4fc793 Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Thu, 20 Jun 2024 10:39:03 -0400 Subject: [PATCH] ref -> box --- ludus.grammar | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ludus.grammar b/ludus.grammar index a29b29e..0d5952a 100644 --- a/ludus.grammar +++ b/ludus.grammar @@ -26,7 +26,7 @@ expression { non_binding | binding } binding { Let | Ref | Fn_Named | Fn_Compound } -Ref { silent<"ref"> Word "=" expression } +Ref { silent<"box"> Word "=" expression } non_binding { simple | complex }