(&self, f: &mut fmt::Formatter)
| 14 | |
| 15 | impl fmt::Display for Op { |
| 16 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 17 | match self { |
| 18 | Op::Add => write!(f, "+"), |
| 19 | } |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | /// A CLI for executing mathematical expressions |
nothing calls this directly
no outgoing calls
no test coverage detected