//! time
use thread;
use Duration;
/// Delay execution for a given number of seconds.
/// Seconds are given as a float (f64).
///
/// Similar to Python's `time.sleep()`.
///
/// # Examples
///
/// ```
/// // wait 0.05 seconds
/// jabba_lib::jtime::sleep(0.05);
/// ```