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

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()