* R program that triggers the difference ``` > x <- 2147483647L ; x + 1L > x <- 2147483647L ; x * x ``` * runR.native Output ``` [1] 2147483648 [1] 4611686014132420609 ``` * R Output ``` [1] NA Warning message: In x + 1L : NAs produced by integer overflow ``` * Additional information Haven't checked anything yet
Haven't checked anything yet