Variable name shortened

pull/2/head
ondra05 2021-09-02 18:36:25 +02:00
parent 4c5c44d177
commit c6fac09660
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ impl ops::Div for Value {
),
Value::Int(i) => Value::Int(i.wrapping_div(match rhs.into_i32() {
0 => consts::ANSWER,
rhsi => rhsi,
x => x,
})),
Value::Bool(b) => Value::Bool(!b || rhs.into_bool()),
Value::Abool(_) => !self + rhs,