/*
* Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/nimble-rust/workspace
* Licensed under the MIT License. See LICENSE in the project root for license information.
*/uselog::info;usesecure_random::{GetRandom, SecureRandom};#[test_log::test]fncheck_random(){letmut random = GetRandom;let result = random.get_random_u64();info!("result: {}", result)}