This commit is contained in:
Erin 2021-08-01 18:28:59 +02:00 committed by ondra05
parent 82767864ab
commit f4beb85de2
2 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ pub fn repl(ast_print: bool) {
println!("bye"); println!("bye");
break; break;
} }
let mut parser = Parser::new(line); let mut parser = Parser::new(line);
let value = parser.init().and_then(|ast| { let value = parser.init().and_then(|ast| {
if ast_print { if ast_print {

View file

@ -137,9 +137,9 @@ impl Value {
Rc::new(RefCell::new(match self { Rc::new(RefCell::new(match self {
Value::Nul => Value::Nul, Value::Nul => Value::Nul,
Value::Str(s) => Value::Int(s.as_bytes()[index.to_i32() as usize] as i32), Value::Str(s) => Value::Int(s.as_bytes()[index.to_i32() as usize] as i32),
Value::Int(i) => Value::Int( Value::Int(i) => {
(format!("{}", i).as_bytes()[index.to_i32() as usize] - b'0') as i32, Value::Int((format!("{}", i).as_bytes()[index.to_i32() as usize] - b'0') as i32)
), }
Value::Bool(b) => Value::Int( Value::Bool(b) => Value::Int(
format!("{}", b) format!("{}", b)
.chars() .chars()