implemented for loops

This commit is contained in:
2025-04-20 05:16:50 -04:00
parent b6be68b235
commit 4d16ffa60f
27 changed files with 360 additions and 174 deletions

View File

@@ -80,7 +80,7 @@ pub fn read_line() -> ShResult<String> {
}
Err(ReadlineError::Interrupted) => Ok(String::new()),
Err(e) => {
return Err(e.into())
Err(e.into())
}
}
}