We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$var
${var}
support variable substitution
when declaring a variable like
set foo bar
then it should be able to be used when parsing a statement again, like:
some-command $foo
but also within strings itself
echo "Hello $foo."
It may make sense to support variable substitution in the bash-like syntax as well: ${variable_name}.
${variable_name}
We should not yet think about supporting extended just yet (e.g. ${foo:-bar} etc)
${foo:-bar}
The text was updated successfully, but these errors were encountered:
$
${}
Successfully merging a pull request may close this issue.
support variable substitution
when declaring a variable like
set foo bar
then it should be able to be used when parsing a statement again, like:
some-command $foo
but also within strings itself
It may make sense to support variable substitution in the bash-like syntax as well:
${variable_name}
.We should not yet think about supporting extended just yet (e.g.
${foo:-bar}
etc)The text was updated successfully, but these errors were encountered: