January 14, 2026
•Vlad Gheorghiu, PhD
The Future of Quantum Computing
This is a test
Welcome to our first test blog post. This is some code snippet from our high-performance quantum computing library qpp.
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Minimal example
#include <iostream>
#include <qpp/qpp.hpp>
int main() {
using namespace qpp;
std::cout << "Hello Quantum++!\nThis is the |0> state:\n";
std::cout << disp(0_ket) << '\n';
std::cout << "This is some random ket in Dirac notation\n";
std::cout << disp(dirac(randket(2)), IOManipDiracOpts{}.set_plus_op(" + "));
std::cout << std::endl;
}