Skip to content

&& (ampersand)

Description

Another way to invoke the and action.

Examples

state A {
    wait(0)
    next_if(Selected, (age() >= 20) && (age() < 30))
    default(Excluded)
}
The above moves all agents in their twenties to the state Selected.

See Also