diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -32,14 +32,24 @@ or can be interpreted with the [ABCMachine][abc-github] project. | '(' <Expression> ')' <Op1> ::= '~' | '!' - <Op2> ::= '+' | '-' | '*' | '/' | '%' | '==' | '||' | '&&' <Type> ::= 'Bool' | 'Int' | 'Void' <Literal> ::= <Bool> | <Int> +<Bool> ::= 'True' | 'False' +<Int> ::= <Digit>-list ``` +## Dependencies + +You need a working Clean installation to build the compiler and at least `clm` +and the code generator to use it. + +## Vim highlighting + +In the `vim` directory. + ## Author & License Copyright © 2017 [Camil Staps][cs]. |