aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-30 09:39:04 +0200
committerBad Diode <bd@badd10de.dev>2021-10-30 09:39:04 +0200
commitf9a6691243d59915dad8785a321ca021bb27de27 (patch)
tree3e0e662799d83a2d132d6950812dee3406d3d439 /README.md
parent58dfde37752f87e5df850ebe3a324dcb825fdb35 (diff)
downloadbdl-f9a6691243d59915dad8785a321ca021bb27de27.tar.gz
bdl-f9a6691243d59915dad8785a321ca021bb27de27.zip
Add minimal syntax file for vim
Diffstat (limited to 'README.md')
-rwxr-xr-xREADME.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8ffd273..cdb30a8 100755
--- a/README.md
+++ b/README.md
@@ -47,7 +47,6 @@ program : <statement>* EOF
47 47
48<definition> : ( def <symbol> <expression> ) 48<definition> : ( def <symbol> <expression> )
49 | ( fun <symbol> ( <symbol>* ) <body> ) 49 | ( fun <symbol> ( <symbol>* ) <body> )
50 ;
51 50
52<expression> : <constant> 51<expression> : <constant>
53 | ( lambda ( <symbol>* ) <body> ) 52 | ( lambda ( <symbol>* ) <body> )
@@ -55,7 +54,6 @@ program : <statement>* EOF
55 | ( if <expression> <expression> ) 54 | ( if <expression> <expression> )
56 | ( set! <symbol> <expression> ) 55 | ( set! <symbol> <expression> )
57 | ( <expression> <expression>* ) 56 | ( <expression> <expression>* )
58 ;
59 57
60<body> : <statement>* 58<body> : <statement>*
61 59