You pick that at installer download time, use a -deck image @HKCORREA
You pick that at installer download time, use a -deck image @HKCORREA


map Const::A => A over and overA => A is common in any language, I have only seen it in rust
impl BinOp {
pub fn to_str(&self) -> &str {
match self {
BinOp::Add => "+",
BinOp::Sub => "-",
BinOp::Mul => "*",
BinOp::Div => "/",
BinOp::Mod => "%",
BinOp::And => "&&",
BinOp::Or => "||",
BinOp::Eq => "==",
BinOp::BangEq => "!=",
BinOp::Less => "<",
BinOp::LessEq => "<=",
BinOp::Greater => ">",
BinOp::GreaterEq => ">=",
}
}
}