https://github.com/rickbutton/bfi
A Brainfuck Interpreter in Java.
https://github.com/rickbutton/bfi
Last synced: 3 months ago
JSON representation
A Brainfuck Interpreter in Java.
- Host: GitHub
- URL: https://github.com/rickbutton/bfi
- Owner: rickbutton
- Created: 2012-02-15T01:36:27.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-02-16T01:55:04.000Z (over 13 years ago)
- Last Synced: 2025-02-12T23:29:26.809Z (5 months ago)
- Language: Java
- Homepage:
- Size: 102 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
README
h1. BFI
p. A simple Brainfuck interpreter written in java.
@To create jar@
@ant jar@@To run@
@java -jar bfi.jar [brainfuck file] @h2. Examples
@java -jar bfi.jar examples/pi.b ?50@
@java -jar bfi.jar examples/numwarp.b !19a2@
p. Input is placed at the end of the file, prefixed by either a ! or ?.
! takes the byte value of the input and ? takes the literal number value. See the examples for actual usage.h2. Future Features
# Literals in brainfuck files
# -Inputs from the command line-
# More debug commands