// This is free and unencumbered software released into the public domain.
usejiff::{Unit, Zoned};fnmain()->Result<(), jiff::Error>{let now =Zoned::now().round(Unit::Second)?;println!("The current date and time is {}",
now.strftime("%A, %B %d, %Y at %T %Z (%:Q)"));Ok(())}