Long integer addition math error in expression tag

toLong(255) + toLong(2)^toLong(8*6) * toLong(255) ends up being converted to Double due to the exponent.

This would get the expected result:
toLong(255) + toLong(2^(8*6)) * toLong(255)

1 Like