aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-30 08:36:14 +0200
committerBad Diode <bd@badd10de.dev>2021-10-30 08:36:14 +0200
commitf17b11003fe384b49a7bf844824f23167b6095e0 (patch)
tree7129ee8267bf8327d608c1d3a927295929b24631 /README.md
parent4ebcd99d1fadac72ea58ea46012a86c5319ef7e7 (diff)
downloadbdl-f17b11003fe384b49a7bf844824f23167b6095e0.tar.gz
bdl-f17b11003fe384b49a7bf844824f23167b6095e0.zip
Add parsing of if expressions
Diffstat (limited to 'README.md')
-rwxr-xr-xREADME.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 321c43d..8ffd273 100755
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ program : <statement>* EOF
46<statement> : <definition> | <expression> 46<statement> : <definition> | <expression>
47 47
48<definition> : ( def <symbol> <expression> ) 48<definition> : ( def <symbol> <expression> )
49 | ( fun ( <symbol>* ) <body> ) 49 | ( fun <symbol> ( <symbol>* ) <body> )
50 ; 50 ;
51 51
52<expression> : <constant> 52<expression> : <constant>