Implemented command substitution

This commit is contained in:
2025-03-19 16:46:45 -04:00
parent 255a4586b4
commit 26fc4669f0
8 changed files with 285 additions and 37 deletions

View File

@@ -42,6 +42,7 @@ impl ParsedSrc {
for token in LexStream::new(self.src.clone(), LexFlags::empty()) {
tokens.push(token?);
}
flog!(DEBUG,tokens);
let mut nodes = vec![];
for result in ParseStream::new(tokens) {