LogosQ Lite

Your first step towards learning efficient Quantum Computation in Rust.

The quantum computing library with emulation to calculate the desired outcomes.

Popular Tutorials

Get started with these popular guides and tutorials

Quick Example

See how easy it is to get started with LogosQ

main.rs
use logosq::prelude::*;

// Create a quantum state
let mut state = State::zero_state(2);

// Apply gates
state.h(0);
state.cnot(0, 1);

// Measure
let result = state.measure(0);
println!("Measurement: {}", result);