Skip to content

|| (vertical bar)

Description

Another way to invoke the or action.

Examples

state A {
    wait(0)
    next_if(Selected, (age() < 20) || (age() >= 30))
    default(Excluded)
}

The above moves all agents that are not in their twenties to the state Selected.

See Also