Compare commits
2 Commits
v1.0a
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
46e1de7e11 | ||
|
|
c27d476f91 |
20
README.md
20
README.md
@@ -1,4 +1,24 @@
|
|||||||
# brainfuck-interpreter-java
|
# brainfuck-interpreter-java
|
||||||
a brainfuck interpreter written in java
|
a brainfuck interpreter written in java
|
||||||
|
|
||||||
|
### Installing:
|
||||||
|
#### Running with the exe
|
||||||
|
go to the [releases page](https://github.com/SemvdH/brainfuck-interpreter-java/releases) to get the latest exe
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Or run it via the command line
|
||||||
|
to run the application via the command line, clone the source code and run
|
||||||
|
|
||||||
|
```mvn install```
|
||||||
|
|
||||||
|
to build the application, then navigate to the target folder and run the jar
|
||||||
|
|
||||||
|
```java -jar target\BrainfuckInterpreter-1.0a-jar-with-dependencies.jar```
|
||||||
|
|
||||||
|
or run the exe from the command line:
|
||||||
|
|
||||||
|
```target\brainfuck-interpreter.exe```
|
||||||
|
|
||||||
_I will make a visualiser for this, don't know when_
|
_I will make a visualiser for this, don't know when_
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -13,7 +13,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>3.8.1</version>
|
<version>4.13.1</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
Reference in New Issue
Block a user