Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/Literals-Integer/R/literals-integer.r
Normal file
8
Task/Literals-Integer/R/literals-integer.r
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue