From 6adf2fda6c21ef25103b9fa82f3c87ea5ad48b36 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 11 Nov 2016 23:11:10 -0800 Subject: [PATCH] Add `BACKTICK` to expression in grammar (#74) --- GRAMMAR.md | 1 + 1 file changed, 1 insertion(+) diff --git a/GRAMMAR.md b/GRAMMAR.md index 3bceece..231d8d1 100644 --- a/GRAMMAR.md +++ b/GRAMMAR.md @@ -45,6 +45,7 @@ export : 'export' assignment expression : STRING | RAW_STRING | NAME + | BACKTICK | expression '+' expression recipe : NAME arguments? ':' dependencies? body?