This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![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; |