Current News

Moderator: Mmiscool

User avatar
By xtal
#32835 Just tried
x = sin(30)+sin(30) ' sin(30) = -.99 rad so -.99 +-.99 = -1.98 BUT
serialprinrln x ' yeild 0.00

I think float support is somewhat lacking?
Otherwise sin/cos/tan/sqr are essentially useless.....
User avatar
By Mmiscool
#32854 uploaded new build solving this issue.

Also please note that you must put spaces between the values or variables and the operator symbol.

Code: Select allx = sin(30) + sin(30)
serialprintln x
wait
User avatar
By xtal
#32861 Looks like you performed some magic, the little checking I've done looks good
V1.10