brainfuck interpreter
brainfuck cli rust
5

Configure Feed

Select the types of activity you want to include in your feed.

fix: accidental hex format in InvalidToken error msg

digi.rip (May 31, 2026, 12:32 PM EDT) 70f5c2db 39d121c1

+3 -3
+1 -1
Cargo.lock
··· 153 153 154 154 [[package]] 155 155 name = "tachyon" 156 - version = "0.3.2" 156 + version = "0.3.3" 157 157 dependencies = [ 158 158 "clap", 159 159 ]
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "tachyon" 3 - version = "0.3.2" 3 + version = "0.3.3" 4 4 edition = "2024" 5 5 description = "brainfuck interpreter written in rust" 6 6
+1 -1
src/evaluator.rs
··· 19 19 write!(f, "Cell value out of bounds at index {:?}", pos) 20 20 } 21 21 RuntimeError::InvalidToken(token) => { 22 - write!(f, "Invalid token at {:x}, check tokenizer!", token) 22 + write!(f, "Invalid token at {}, check tokenizer!", token) 23 23 } 24 24 RuntimeError::IoError(err) => { 25 25 write!(f, "{}", err)