Created
December 9, 2023 06:48
-
-
Save isaacssemugenyi/2cbe7bd138e47ba63276da10577ea45c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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