From 5f85679547e5df67025fdb347a723d43273e0024 Mon Sep 17 00:00:00 2001 From: Funky Waddle Date: Mon, 24 Nov 2025 17:32:20 -0600 Subject: [PATCH] Update default parameter syntax to use .default(value) --- grammar/declarations/function_declarations.bnf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/grammar/declarations/function_declarations.bnf b/grammar/declarations/function_declarations.bnf index a6ac2a7..530ad8c 100644 --- a/grammar/declarations/function_declarations.bnf +++ b/grammar/declarations/function_declarations.bnf @@ -11,8 +11,7 @@ ::= ":" - ::= ":" - "=" + ::= ".default(" ")" ::= "fn" "(" ? ")" "->" "[" "]"