It seems we may need to use "1.0*" several times in one line... local a = 4 local b = 3 local c = 1.0*a/b + a/b Here, tostring(c) returns 2.33333
So we would need to write: local c = 1.0*a/b + 1.0*a/b Here, tostring(c) returns 2.66667 Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/power-pro/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
