Skip to content

Instantly share code, notes, and snippets.

View chrsmutti's full-sized avatar

Christian Mutti chrsmutti

View GitHub Profile
@chrsmutti
chrsmutti / lib.rs
Created April 8, 2024 03:17
"Clean" Code, Horrible Performance in Rust
#![feature(test)]
#![allow(dead_code)]
extern crate test;
mod m01_trait;
mod m02_match;
mod m03_table;
mod m04_table_multiplier;
const COUNT: usize = 1024 * 10;