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
Functions like (sum, avg, etc.) over entire history of results.
sum(*) (or any other special character) should produce the sum of all results in the current session.
sum(*)
Or the way bc does it. Mark result as a variable then use the variable tip later in a sum with other variables.
bc
tip
bill=10+20+30+40+50 tip=bill*10/100 bill+tip
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Functions like (sum, avg, etc.) over entire history of results.
sum(*)
(or any other special character) should produce the sum of all results in the current session.Or the way
bc
does it. Mark result as a variable then use the variabletip
later in a sum with other variables.The text was updated successfully, but these errors were encountered: