diff options
author | Maël Gassmann <mael.gassmann@students.bfh.ch> | 2021-06-12 15:46:05 +0200 |
---|---|---|
committer | Maël Gassmann <mael.gassmann@students.bfh.ch> | 2021-06-12 15:46:05 +0200 |
commit | 5941a0397297ded25b4b31f1c8320bec9b8e88ff (patch) | |
tree | c97649a77b7f4ba230ffccb9653b79360b49971a | |
parent | 897d1bf5766d4d3687561a7366bef0b6900cd497 (diff) |
[~] Improved the README
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -9,17 +9,17 @@ ### Compilation -Navigate to the *calculator-java/* folder and run: +Navigate to the **calculator-java/** folder and run: ``` mvn package ``` -The resulting jar file can then be located in the *calculator-java/target/* folder. +The resulting jar file can then be located in the **calculator-java/target/** folder. ### Execution -Navigate to the newly generated *target/* folder and launch the jar: +Navigate to the newly generated **target/** folder and launch the jar: ``` java -jar calculator-java-1.0-SNAPSHOT.jar @@ -27,12 +27,12 @@ java -jar calculator-java-1.0-SNAPSHOT.jar ## JavaCC Calculator project -To easily compile and run this project, you will find a file *compileRun.sh* in its folder. -If you still prefer to compile and run separatly, you can check out the sections below. +To easily compile and run this project, you will find a file **compileRun.sh** in its folder. +If you still prefer to compile and run separately, you can check out the sections below. ### Compilation -Navigate to the *calculator-javacc/* folder and run: +Navigate to the **calculator-javacc/** folder and run: ``` javacc Calculator.jj && javac *.java |