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

@@ -16,7 +16,7 @@ pub fn source(node: Node, job: &mut JobBldr) -> ShResult<()> {
ShErr::full(
ShErrKind::ExecFail,
"source: File not found",
span.into()
span
)
);
}
@@ -25,7 +25,7 @@ pub fn source(node: Node, job: &mut JobBldr) -> ShResult<()> {
ShErr::full(
ShErrKind::ExecFail,
"source: Given path is not a file",
span.into()
span
)
);
}