How to force Euphoria to create 64-bit atom?
- Posted by SnakeCharmer Feb 01, 2013
- 1035 views
As far as I know, construction "atom X = 1" create Euphoria's integer. My program have many lines such as
atom X = 1 - Y -- where Y is always float number
So, Euphoria will be converted 1 (integer) to 1.0 (atom) each time, yes? How to optimize it? May be, "atom X = 1.0"?