Er, for me, all of the functions return zero, including Int, Floor, Ciel, and all the trig functions. In that latest version, at least. Also, I think it would be nice if the numberpad ENTER button on the keyboard also triggered the calc's enter button, not just the enter on the middle of the keyboard.
Same thing on the old version, it seems. Also, if I don't put in the right number of brackets, or try to graph something, it seems that the whole program locks up.
Edit:
Also, in this code:
if button(n).press=1
select n
case 1:
inpt$=inpt$+"1"
endcase
case 2:
inpt$=inpt$+"2"
endcase
case 3:
inpt$=inpt$+"3"
endcase
case 4:
inpt$=inpt$+"4"
endcase
case 5:
inpt$=inpt$+"5"
endcase
case 6:
inpt$=inpt$+"6"
endcase
case 7:
inpt$=inpt$+"7"
endcase
case 8:
inpt$=inpt$+"8"
endcase
case 9:
inpt$=inpt$+"9"
endcase
wouldn't it be far easier to do
if button(n).press=1
if n < 10
inpt$=inpt$+str$(n)
endif
select n
...