41 lines
948 B
Markdown
41 lines
948 B
Markdown
|
# QIS XML
|
||
|
|
||
|
Inspired by the Quil Specifications [doc](https://quil-lang.github.io/#1Preamble) & the original QIS XML [paper](obsidian://open?vault=enter&file=Machine%20Tips%20(Quantum)%2FProject%20Vault%2FPapers%2FMaster's%20Paper%20Lit%20Review%20pdfs%2FQIS-XML%20An%20Extensible%20Markup%20Language%20for%20Quantum%20Information%20Science.pdf)
|
||
|
|
||
|
**Authors:** Pascal Heus, Shwetha Jayaraj
|
||
|
|
||
|
**Language Version**: 2023.1 (DRAFT)
|
||
|
|
||
|
Table of Contents
|
||
|
- 1. Preamble
|
||
|
- 1.1 An Introduction QXL
|
||
|
|
||
|
...
|
||
|
|
||
|
|
||
|
|
||
|
![[Pasted image 20230901113142.png]]Simple Example of XML:
|
||
|
<catalog>
|
||
|
<book isbn=”0385504209”>
|
||
|
<title>Da Vinci Code</title>
|
||
|
<author>Dan Brown</author>
|
||
|
</book>
|
||
|
<book isbn=”0553294385”>
|
||
|
<title>I, robot</title>
|
||
|
<author>Isaac Asimov</author>
|
||
|
</book>
|
||
|
</catalog>
|
||
|
<mycontacts>
|
||
|
<person>
|
||
|
<name>John Doe</name>
|
||
|
<email>jdoe@example.org</email>
|
||
|
</person>
|
||
|
|
||
|
<person>
|
||
|
<name>Richard Feynman<name>
|
||
|
<occupation>scientist</occupation>
|
||
|
</person>
|
||
|
</mycontacts>
|
||
|
|
||
|
|