asimov_patterns/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! ```rust
4//! # use asimov_patterns::*;
5//! ```
6
7#![no_std]
8#![forbid(unsafe_code)]
9
10pub mod execute;
11pub use execute::*;