pub type ParseResult = ParseResult<f64>;
pub enum ParseResult { Ok(f64), Null, TypeMismatch(String), SyntaxErr(SyntaxErr), }