twips
A pure Rust implementation of twips. For now, most of the code is experimental and placed in twips::_internal.
Example usage
use ;
twipsA pure Rust implementation of twips. For now, most of the code is experimental and placed in twips::_internal.
use twips::scramble::{random_scramble_for_event, Event};
pub fn main() {
let scramble = random_scramble_for_event(Event::Cube2x2x2Speedsolving).unwrap();
println!("{}", scramble);
}