<?xml version="1.0" encoding="UTF-8"?>

<flowchart xmlns="http://wizard4j.org/flowchart">
<root>
 <info name="greetInfo" label="You are going to greet a number of persons. Please continue."/>
 <loop name="children" label="How many children do you have?" help="This is a number you should remember." mode="nbrOfIterations" minNbrOfIterations="0" maxNbrOfIterations="10">
   <input name="firstname" type="string" label="What's the first name of this child?"/>
 </loop>
 <loop name="otherPersons" label="Now you will be able to greet some extra persons." anotherIterationQuestion="Is there anyone else you want to greet?" mode="userInterrupted" minNbrOfIterations="0" maxNbrOfIterations="10">
   <input name="firstname" type="string" label="What's the first name of this person?"/>
 </loop>
</root>
</flowchart>
