Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
3
Task/Literals-Integer/F-Sharp/literals-integer-1.fs
Normal file
3
Task/Literals-Integer/F-Sharp/literals-integer-1.fs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
0b101 // = 5
|
||||
0o12 // = 10
|
||||
0xF // = 16
|
||||
8
Task/Literals-Integer/F-Sharp/literals-integer-2.fs
Normal file
8
Task/Literals-Integer/F-Sharp/literals-integer-2.fs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
10y // 8-bit
|
||||
'g'B // Character literals can be turned into unsigned 8-bit literals
|
||||
10s // 16-bit
|
||||
10l // 32-bit (suffix is optional)
|
||||
10L // 64-bit
|
||||
10I // Bigint (cannot be preceded by a 'u')
|
||||
|
||||
10un // Unsigned native int (used to represent pointers)
|
||||
Loading…
Add table
Add a link
Reference in a new issue