Function eosio_sys::printdf

source ·
pub unsafe extern "C" fn printdf(value: f64)
Expand description

Prints value as double-precision floating point number @brief Prints value as double-precision floating point number (i.e. double) @param value of double to be printed

Example:

@code double value = 5.0 / 10.0; printdf(value); // Output: 0.5 @endcode