| 1 | <config>
|
|---|
| 2 | <ask var="r" text="Choose something, please!"/>
|
|---|
| 3 | <messagebox text="You choose ${{r}}" type="i"/>
|
|---|
| 4 |
|
|---|
| 5 | <if test="${{r}}" equals="0" >
|
|---|
| 6 | <messagebox text="r=0!"/>
|
|---|
| 7 | </if>
|
|---|
| 8 | <else>
|
|---|
| 9 | <messagebox text="no, r!=0 - r=${{r}} actually!"/>
|
|---|
| 10 | </else>
|
|---|
| 11 |
|
|---|
| 12 | <if test="${{r}}" in="1;2" >
|
|---|
| 13 | <messagebox text="r=1 or 2!"/>
|
|---|
| 14 | </if>
|
|---|
| 15 |
|
|---|
| 16 | <if test="${{r}}" notin="2" notequals="0">
|
|---|
| 17 | <messagebox text="It is not 0, it is not 2 , so it is = 1!"/>
|
|---|
| 18 | </if>
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | <break/>
|
|---|
| 22 | <ask var="r" text="Choose something, please!" options="A;B"/>
|
|---|
| 23 | <messagebox text="You choose ${{r}}" type="i"/>
|
|---|
| 24 |
|
|---|
| 25 | </config>
|
|---|