mirror of
https://github.com/nasa/fpp.git
synced 2026-04-30 06:48:46 -05:00
15 lines
196 B
Plaintext
15 lines
196 B
Plaintext
=== Floating-Point Literals
|
|
|
|
A *floating-point literal expression* is a C-style representation of an
|
|
IEEE floating-point number.
|
|
|
|
**Examples:**
|
|
|
|
[source,fpp]
|
|
----
|
|
1e-10
|
|
0.001
|
|
3.14159
|
|
6.02E23
|
|
----
|