Pete, I looked at your demo and I couldn't figure out how I would use your math engine to perform any math problem, it's horrifically complex
suppose that I wanted to code a simple factorial
show me how simple it is with your math-engine
I am signing off for the weekend, see you Sunday
suppose that I wanted to code a simple factorial
Code: (Select All)
input "n ";n
f=1
for i=1 to n
f=f*i
next
print f
I am signing off for the weekend, see you Sunday