1// This is free and unencumbered software released into the public domain.
23//! ```rust
4//! # use asimov_patterns::*;
5//! ```
67#![no_std]
8#![forbid(unsafe_code)]
910extern crate alloc;
1112pub mod execute;
13pub use execute::*;
1415pub mod programs;
16pub use programs::*;