8 lines
234 B
R
8 lines
234 B
R
0x2d7==727 # TRUE
|
|
identical(0x2d7, 727) # TRUE
|
|
is.numeric(727) # TRUE
|
|
is.integer(727) # FALSE
|
|
is.integer(727L) # TRUE
|
|
is.numeric(0x2d7) # TRUE
|
|
is.integer(0x2d7) # FALSE
|
|
is.integer(0x2d7L) # TRUE
|