aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
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