This repository has been archived on 2024-05-19. You can view files and clone it, but cannot push or open issues or pull requests.
l-systems/tortue.xsd
2024-05-06 14:46:31 +02:00

23 lines
753 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="Empty">
</xs:complexType>
<xs:element name="tortue">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="line" type="xs:positiveInteger" />
<xs:element name="move" type="xs:positiveInteger" />
<xs:element name="turn" type="xs:integer" />
<!-- TODO: Store que si on a déja eu un line/move -->
<xs:element name="store" type="Empty" />
<!-- TODO: Restore que si on a déjà eu un store -->
<xs:element name="restore" type="Empty" />
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>