We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b485574 commit 297bdb0Copy full SHA for 297bdb0
src/run.rs
@@ -562,19 +562,15 @@ pub fn run(
562
} else {
563
memory_values.push(number.unwrap().to_string());
564
}
565
- } else {
566
- if exists != memory_values.len() {
567
- memory_values[exists] = value.clone();
568
569
- memory_values.push(value.clone());
570
- }
571
572
573
+ } else if exists != memory_values.len() {
574
memory_values[exists] = value.clone();
575
576
memory_values.push(value.clone());
577
+ memory_values[exists] = value.clone();
+ } else {
+ memory_values.push(value.clone());
578
579
580
if types {
0 commit comments