summaryrefslogtreecommitdiff
path: root/test/ref1.lm
diff options
context:
space:
mode:
Diffstat (limited to 'test/ref1.lm')
-rw-r--r--test/ref1.lm6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ref1.lm b/test/ref1.lm
index 1ad8e159..558fe5d7 100644
--- a/test/ref1.lm
+++ b/test/ref1.lm
@@ -1,14 +1,14 @@
### LM ###
lex
- literal 'application'
- literal ';'
+ literal `application
+ literal `;
token id /[A-Za-z_][A-Za-z_0-9]*/
ignore /[ \t\r\n]+/
end
def definition
- ['application' id ';']
+ [`application id `;]
def program
[definition*]