Compare commits

...

5 Commits

Author SHA1 Message Date
sem
e1a2a62ce7 Merge branch 'master' into dependabot/maven/junit-junit-4.13.1 2026-06-30 08:13:52 +00:00
sem
59813484b2 Merge pull request 'Bump commons-io from 2.5 to 2.7' (#3) from dependabot/maven/commons-io-commons-io-2.7 into master
Reviewed-on: #3
2026-06-30 08:13:27 +00:00
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
dependabot[bot]
46e1de7e11 Bump junit from 3.8.1 to 4.13.1
Bumps [junit](https://github.com/junit-team/junit4) from 3.8.1 to 4.13.1.
- [Release notes](https://github.com/junit-team/junit4/releases)
- [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.13.1.md)
- [Commits](https://github.com/junit-team/junit4/commits/r4.13.1)

Signed-off-by: dependabot[bot] <support@github.com>
2020-10-13 17:54:59 +00:00
SemvdH
c27d476f91 added release to readme 2020-01-06 22:20:24 +01:00
2 changed files with 22 additions and 2 deletions

View File

@@ -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_

View File

@@ -13,13 +13,13 @@
<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>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
<version>2.5</version> <version>2.7</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.openjfx</groupId> <groupId>org.openjfx</groupId>