bc51b4e280
Can now support showing the trail of includes in an error message. Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
state start {
|
|
Testing ts;
|
|
ts.yesno = true;
|
|
ts.count = 5;
|
|
transition select (ts.yesno == "testing") {
|
|
true: accept;
|
|
false: reject;
|
|
};
|
|
}
|