of     1   

myactivetestplace
#219121643Sunday, June 18, 2017 12:47 AM GMT

If you have been using it wrong. print(45 + 11.25/2) Doesnt equal the sum of 45 + 11.25 divided by 2 it equals (45 + 5.625) 11.25/2 = 5.625. If you want the sum of (45 + 11.25) divided by 2 it would be print((45 + 11.25)/2) 45 + 11.25 = 56.25 56.25/2 = ((45 + 11.25)/2)
cntkillme
#219121685Sunday, June 18, 2017 12:48 AM GMT

Uhm literally every calculator and what you do on paper follows those rules, just like Lua. Multiplication/division is done _before_ addition/subtraction.
myactivetestplace
#219121805Sunday, June 18, 2017 12:50 AM GMT

Ok and?
cntkillme
#219121831Sunday, June 18, 2017 12:50 AM GMT

Well I don't know what you're trying to post here because I'm pretty sure everyone knows this?
myactivetestplace
#219121863Sunday, June 18, 2017 12:51 AM GMT

I dont know thats why I posted it

    of     1