2 Commits

Author SHA1 Message Date
dependabot[bot]
25b5cca17a Bump commons-io from 2.5 to 2.7
Bumps commons-io from 2.5 to 2.7.

Signed-off-by: dependabot[bot] <support@github.com>
2021-04-26 19:48:25 +00:00
SemvdH
c27d476f91 added release to readme 2020-01-06 22:20:24 +01:00
2 changed files with 21 additions and 1 deletions

View File

@@ -1,4 +1,24 @@
# brainfuck-interpreter-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_

View File

@@ -19,7 +19,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
<version>2.7</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>