Open GoogleCodeExporter opened 8 years ago
This feature is not needed. Simply assign your calculation to a variable, then
use the variable.
For example, try
k=5
Then do
k+3
And the answer will be 8
You can also create functions. For example, do
myfunc(a,b)=a-b
Then do
x=myfunc(5,3)
Then try
x+4
Which will leave you with 6. You can also do functional things like this: do
m=5
h=4
x=m+h
That will show you an answer of 9, and all those variables are usable in
further calculations.
:)
Original comment by TruSktr
on 26 Sep 2013 at 5:22
Original issue reported on code.google.com by
William....@gmail.com
on 17 Dec 2011 at 10:26