blob: f88a87a81aafbf2f1d574f36ab4f91b6b5f138e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- simple test of the in() predicate -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" conf:datamodel=""
xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="p">
<parallel id="p">
<state id="s0">
<transition conf:inState="s1" conf:targetpass=""/>
<transition conf:targetfail=""/>
</state>
<state id="s1"/>
</parallel>
<conf:pass/>
<conf:fail/>
</scxml>
|