Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/fsharp/language-reference/literals.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ The following table shows the literal types in F#. Characters that represent dig
|unativeint|native pointer as an unsigned natural number|un|`0x00002D3Fun`|
|int64|signed 64-bit integer|L|`86L`|
|uint64|unsigned 64-bit natural number|UL|`86UL`|
|single, float32|32-bit floating point number|F or f|`4.14F` or `4.14f` or `infinityf` or `-infinityf`|
|single, float32|32-bit floating point number|F or f|`4.14F` or `4.14f` or `2.3e+32f` or `2.3e-32f` or `infinityf` or `-infinityf`|
|||lf|`0x00000000lf`|
|float; double|64-bit floating point number|none|`4.14` or `2.3E+32` or `2.3e+32` or `infinity` or `-infinity`|
|float; double|64-bit floating point number|none|`4.14` or `2.3E+32` or `2.3e+32` or `2.3e-32` or `infinity` or `-infinity`|
|||LF|`0x0000000000000000LF`|
|bigint|integer not limited to 64-bit representation|I|`9999999999999999999999999999I`|
|decimal|fractional number represented as a fixed point or rational number|M or m|`0.7833M` or `0.7833m`|
Expand Down
Loading