Skip to content

Commit

Permalink
Grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
w-culhane committed May 9, 2018
1 parent 3d94560 commit 6babbe6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "heliometer"
version = "0.5.2"
version = "0.5.3"
description = "A basic brainfuck interpreter"
authors = [ "LEARAX57H <willculhane3@gmail.com>",
"vpzomtrrfrt <eric@gloriouswill.com>" ]
Expand Down
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -5,14 +5,15 @@
[![Downloads](https://img.shields.io/crates/d/heliometer.svg)](https://crates.io/crates/heliometer)
[![License](https://img.shields.io/crates/l/heliometer.svg)](https://crates.io/crates/heliometer)

A brainfuck interpreter written in rust.
A Brainfuck interpreter written in Rust.

Heliometer can read and execute brainfuck programs from a file, or it can be
Heliometer can read and execute Brainfuck programs from a file, or it can be
used as a library. See the [documentation](https://pishlsdyue.github.io/heliometer/master/heliometer/)
for details.


### Binary Installation
Simply run `cargo install` to install `helio` to `.cargo/bin`.

`helio <file>` will interpret the contents of `<file>` as brainfuck.
`helio <file>` will interpret the contents of `<file>` as Brainfuck, using
stdin and stdout for input and output respectively.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -171,7 +171,7 @@ impl<'s, R: std::io::Read, W: std::io::Write> State<'s, R, W> {
}
}

/// Execute a brainfuck program
/// Execute a Brainfuck program
///
/// # Example
///
Expand Down

0 comments on commit 6babbe6

Please sign in to comment.