wasm4fun_random/lib.rs
1// Copyright Claudio Mattera 2022.
2//
3// Distributed under the MIT License or the Apache 2.0 License at your option.
4// See the accompanying files License-MIT.txt and License-Apache-2.0.txt, or
5// online at
6// https://opensource.org/licenses/MIT
7// https://opensource.org/licenses/Apache-2.0
8
9//! Random number generators primitives and subsystems for WASM-4 fantasy
10//! console
11
12#![no_std]
13
14mod random;
15pub use random::Generator;