cd QuantumC-master
g++ *.cpp -o qc -std=c++23 -fconstexpr-ops-limit=100000000
./qc -v
./qc -d
./qc -h
```bash
# Mac
# Move into the cloned repo
cd QuantumC-master
# Compile
clang++ *.cpp -o qc-macos -std=c++20 -stdlib=libc++
# Run the version
./qc -v
# Run the demo
./qc -d
# Check flags with
./qc -h
# Windows
# Move into the cloned repo
cd QuantumC-master
# Compile
g++ *.cpp -o qc.exe -std=c++23 -fconstexpr-ops-limit=100000000 -Wa,-mbig-obj
# Run the version
qc.exe -v
# Run the demo
qc.exe -d
# Check flags with
qc.exe -h