Literals/Floating point: Difference between revisions

Kotlin example with explicit types
(→‎{{header|Rust}}: Added rust)
(Kotlin example with explicit types)
Line 493:
 
=={{header|Kotlin}}==
<lang scala>val d: Double = 1.0 // double
val d2: Double = 1.234e-10 // double
val f: Float = 728832f
728832f // float
728832Fval //f2: floatFloat = 728832F</lang>
 
=={{header|Lasso}}==