From a1c9e4894f5feb16451f7c210681c7c8b88cf8cf Mon Sep 17 00:00:00 2001 From: Atreya Bain Date: Thu, 1 Oct 2020 22:13:11 +0530 Subject: [PATCH] Rearrange README --- README.md | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 81c5adf..7a0b5d3 100644 --- a/README.md +++ b/README.md @@ -20,22 +20,6 @@ Requires: ./bfc prog.bfe -t #Translate file to bf ``` -## Setup oddities - -1. Copy antlr4's cpp libs to `./libs/antlr4`. (Please take care that the include folder points straight to the files not to `antlr-runtime`) -2. Copy `antlr-4.8-complete.jar` to `./thirdparty/antlr`. -3. Generate parsers to `./libs/generated` or use VSCode with the ANTLR extension. - -## Todo (Tentative) - -- [ ] Grammar - - [X] Number shorthand - - [X] Loop statements - - [ ] Shorthand segments -- [X] Processing - - [X] Translate to bf - - [X] Execute results - ## Syntax **Basic** @@ -64,4 +48,21 @@ Eg. > (+65>)3 //stores AAA (<.)3 //prints AAA -``` \ No newline at end of file +``` + + +## Setup oddities (dev) + +1. Copy antlr4's cpp libs to `./libs/antlr4`. (Please take care that the include folder points straight to the files not to `antlr-runtime`) +2. Copy `antlr-4.8-complete.jar` to `./thirdparty/antlr`. +3. Generate parsers to `./libs/generated` or use VSCode with the ANTLR extension. + +## Todo (Tentative) + +- [ ] Grammar + - [X] Number shorthand + - [X] Loop statements + - [ ] Shorthand segments +- [X] Processing + - [X] Translate to bf + - [X] Execute results