Implemented arithmetic substitution

This commit is contained in:
2025-03-07 04:30:17 -05:00
parent 11576e9e08
commit fb0a3af428
11 changed files with 201 additions and 55 deletions

View File

@@ -58,10 +58,6 @@ pub fn expand_dquote(dquote: Token, shenv: &mut ShEnv) -> Token {
}
}
log!(DEBUG, result);
log!(DEBUG, "{:?}",dquote.span());
let token = shenv.expand_input(&result, dquote.span()).pop().unwrap_or(dquote);
log!(DEBUG, "{}",token.as_raw(shenv));
token
}