Last active
October 13, 2015 12:22
-
-
Save doubleshow/b303fe255146a0788fa0 to your computer and use it in GitHub Desktop.
craftml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<craft> | |
<info> | |
<title>Untitled</title> | |
</info> | |
<param name="h" type="int" default="20" | |
label="height of the cylinder"/> | |
<param name="n" type="int" default="3" | |
label="number of spheres"/> | |
<param name="name" type="string" default="world" | |
label="my name"/> | |
<col spacing="5"> | |
<row spacing="10"> | |
<cylinder height="{{h}}"></cylinder> | |
<cube></cube> | |
<prism></prism> | |
<dome></dome> | |
<repeat n="{{n}}"> | |
<sphere></sphere> | |
</repeat> | |
</row> | |
<div> | |
Hello {{name}} | |
</div> | |
</col> | |
</craft> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment