Skip to content

Instantly share code, notes, and snippets.

@isaacssemugenyi
Created December 9, 2023 06:48
Show Gist options
  • Save isaacssemugenyi/2cbe7bd138e47ba63276da10577ea45c to your computer and use it in GitHub Desktop.
Save isaacssemugenyi/2cbe7bd138e47ba63276da10577ea45c to your computer and use it in GitHub Desktop.
fn generate_random_receipt_numbers() -> (String, u32) {
let nanos = SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
.subsec_nanos();
(nanos.to_string() + ".txt", nanos)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment