brainfuck interpreter
brainfuck cli rust
5

Configure Feed

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

io: correct diagnostic codes for IoError

digi.rip (Jun 17, 2026, 6:08 PM EDT) 50bbb4b4 674bec43

+2 -2
+2 -2
src/io.rs
··· 5 5 #[derive(Debug, Diagnostic)] 6 6 pub enum IoError { 7 7 #[diagnostic( 8 - code(tachyon::runtime::io_read), 8 + code(tachyon::io::read), 9 9 help("check that stdin is available and not closed") 10 10 )] 11 11 ReadFail { err: std::io::Error }, 12 12 13 13 #[diagnostic( 14 - code(tachyon::runtime::io_write), 14 + code(tachyon::io::write), 15 15 help("check that stdout is available and not closed") 16 16 )] 17 17 WriteFail { err: std::io::Error },