brainfuck interpreter
brainfuck cli rust
5

Configure Feed

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

fix: finally implemented empty error for RuntimeError

digi.rip (Jun 7, 2026, 3:12 PM EDT) 13d43407 7a8f74f7

+8 -1
+8 -1
src/evaluator.rs
··· 58 58 } 59 59 } 60 60 61 - impl std::error::Error for RuntimeError {} 61 + impl std::error::Error for RuntimeError { 62 + fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { 63 + match self { 64 + RuntimeError::IoReadError(e) | RuntimeError::IoWriteError(e) => Some(e), 65 + _ => None, 66 + } 67 + } 68 + } 62 69 63 70 #[derive(Clone, ValueEnum, Debug, PartialEq)] 64 71 pub enum OOBBehavior {