-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Previous result variable #4
Comments
You can tap on the text of any previous result, and it will copy that into the input field.
Tapping on the I will look into implementing a special 'ANS' button, however. |
Yes a button, maybe replace that extra ENTER, see #1 |
Agree with @licaon-kter . I do not think you need a special 'button' for it. When you are computing an expression, simply assign the result to the variable 'ans' by default (assuming of course that it is not a user defined variable or function). So for instance, if the user enters '2+3', make ans=2+3, and display ans. However if the user says 'A=2+3', do not assign it to ans. |
@licaon-kter That extra ENTER (or as it is called in the code, EVAL) is now fully customizable (as is any other key) with a simple long-press. Previous result variable functionality itself is coming soon. |
In SpeedCrunch you have 'ans' eg:
Result 2
Result 8
Also another way would be (natural) to consider the previous result if the next operation starts with an operator, eg:
Result 2
Result 8
The text was updated successfully, but these errors were encountered: