Skip to content

Commit cdb5350

Browse files
committed
git
modified: src/main.rs
1 parent 19b82b6 commit cdb5350

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/main.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -868,8 +868,12 @@ impl Executor {
868868
return;
869869
}
870870
}
871+
<<<<<<< HEAD
871872

872873
self.log_print(String::from("Error! item not found in the list\n"));
874+
=======
875+
self.log_print(String::from("Error! item not found in the list").as_str().to_owned() + "\n");
876+
>>>>>>> ce3cc7e (git)
873877
self.stack.push(Type::Error(String::from("item-not-found")));
874878
}
875879

@@ -1379,7 +1383,10 @@ impl Executor {
13791383
}
13801384

13811385
<<<<<<< HEAD
1386+
<<<<<<< HEAD
1387+
=======
13821388
=======
1389+
>>>>>>> ce3cc7e (git)
13831390
"index" => {
13841391
let findhint = self.pop_stack().get_string();
13851392
let findtarget = self.pop_stack().get_list();
@@ -1402,7 +1409,12 @@ impl Executor {
14021409
self.clearscreen();
14031410
}
14041411

1412+
<<<<<<< HEAD
14051413
>>>>>>> 887510b (git)
1414+
=======
1415+
=======
1416+
>>>>>>> 1d34bfe (Refactoring)
1417+
>>>>>>> ce3cc7e (git)
14061418
// If it is not recognized as a command, use it as a string.
14071419
_ => self.stack.push(Type::String(command)),
14081420
}

0 commit comments

Comments
 (0)