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 daa1d41 commit 9b9caf5Copy full SHA for 9b9caf5
src/main.rs
@@ -888,7 +888,7 @@ impl Executor {
888
"mkdir" => {
889
let name = self.pop_stack().get_string();
890
if let Err(e) = fs::create_dir(name) {
891
- self.log_print(format!("エラー! {e}"))
+ self.log_print(format!("エラー! {e}\n"))
892
}
893
894
@@ -897,11 +897,11 @@ impl Executor {
897
898
if Path::new(name.as_str()).is_dir() {
899
if let Err(e) = fs::remove_dir(name) {
900
901
902
} else {
903
if let Err(e) = fs::remove_file(name) {
904
905
906
907
0 commit comments