Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wololock/groovy-brainfuck
An experimental Brainfuck interpreter written in Groovy
https://github.com/wololock/groovy-brainfuck
brainfuck-interpreter brainfuck-parser groovy
Last synced: about 1 month ago
JSON representation
An experimental Brainfuck interpreter written in Groovy
- Host: GitHub
- URL: https://github.com/wololock/groovy-brainfuck
- Owner: wololock
- Created: 2020-05-19T08:16:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-19T09:30:09.000Z (over 4 years ago)
- Last Synced: 2024-10-30T14:24:41.053Z (3 months ago)
- Topics: brainfuck-interpreter, brainfuck-parser, groovy
- Language: Groovy
- Homepage: https://www.youtube.com/watch?v=vJgcsyLJf0g
- Size: 59.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Brainfuck Interpreter in Groovy
Wiki: https://en.wikipedia.org/wiki/Brainfuck
Watch the video: https://www.youtube.com/watch?v=vJgcsyLJf0g
### Run "Hello, World!" program:
```
$ ./gradlew --no-daemon run --args="++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++."
```### Run all unit tests
```
$ ./gradlew --no-daemon test
```### Clone empty project to implement your own interpreter
```
$ git clone --single-branch --branch clean https://github.com/wololock/groovy-brainfuck
```