Skip to content

Commit

Permalink
Renamed project.
Browse files Browse the repository at this point in the history
  • Loading branch information
toro2k committed May 15, 2015
1 parent 9d229f4 commit de6a2d3
Show file tree
Hide file tree
Showing 4 changed files with 15 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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[package]
name = "bf"
name = "baffi"
version = "0.1.0"
authors = ["toro2k <[email protected]>"]
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# bf-rs
# baffi

A naive brainfuck interpreter written in Rust.

Build with:

$ cargo build --release

Run with:

$ baffi program_file.b
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
extern crate bf;
extern crate baffi;

use std::io;
use std::io::Write;
use std::env;
use std::fs;

use bf::compiler;
use bf::eval;
use baffi::compiler;
use baffi::eval;


macro_rules! printerrln {
Expand Down

0 comments on commit de6a2d3

Please sign in to comment.