Created
March 2, 2011 00:11
-
-
Save jbeard4/850186 to your computer and use it in GitHub Desktop.
test case 1
This file contains hidden or 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
<scxml xmlns="http://www.w3.org/2005/07/scxml" profile="ecmascript" version="1.0" name="scxmlRoot"> | |
<initial> | |
<transition target="A2 B2"/> | |
</initial> | |
<parallel id="P"> | |
<state id="A" initial="A1"> | |
<state id="A1"/> | |
<state id="A2"/> | |
</state> | |
<state id="B" initial="B1"> | |
<state id="B1"/> | |
<state id="B2"/> | |
</state> | |
</parallel> | |
</scxml> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment