wasm4fun-random 0.1.0

Random number generators primitives and subsystems for WASM-4 fantasy console
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Claudio Mattera 2022.
//
// Distributed under the MIT License or the Apache 2.0 License at your option.
// See the accompanying files License-MIT.txt and License-Apache-2.0.txt, or
// online at
// https://opensource.org/licenses/MIT
// https://opensource.org/licenses/Apache-2.0

//! Random number generators primitives and subsystems for WASM-4 fantasy
//! console

#![no_std]

mod random;
pub use random::Generator;