1
2
3
4
5
6
7
8
9
pub(crate) const SYMBOL_ADD: &str = " + ";
pub(crate) const SYMBOL_MUL: &str = " * ";
pub(crate) const SYMBOL_POW: &str = "**";
pub(crate) const SYMBOL_DIV: &str = " / ";
pub(crate) const SYMBOL_SUB: &str = " - ";

pub(crate) const BRACKET_ROUND: (&str, &str) = ("(", ")");
pub(crate) const BRACKET_FIGURE: (&str, &str) = ("{", "}");
pub(crate) const BRACKET_SQUARE: (&str, &str) = ("[", "]");