miskatonic/main.rs
1//! Run ad‑hoc experimental snippets and throwaway tests.
2//!
3//! # Usage
4//! ```bash
5//! miskatonic # executes current scratch code in main
6//! ```
7#![feature(exit_status_error)]
8
9/// Run ad‑hoc experimental snippets and throwaway tests.
10#[allow(clippy::unnecessary_wraps, clippy::missing_const_for_fn)]
11fn main() -> color_eyre::Result<()> {
12 Ok(())
13}