Quil
1 program
Added 2026-02-06T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Quantum Instruction Language
Provenance: commit 583e8c50bb · authored 2026-02-06T09:28:33+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Bell State Preparation
Provenance: commit 583e8c50bb · authored 2026-02-06T09:28:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Bell State Preparation
# This program creates a maximally entangled Bell state between two qubits
DECLARE ro BIT[2]
# Initialize qubit 0 in superposition
H 0
# Entangle qubit 0 and qubit 1
CNOT 0 1
# Measure both qubits
MEASURE 0 ro[0]
MEASURE 1 ro[1]