action
| Scope | |
|---|---|
| global | ❌ |
action | ✅ |
function | ❌ |
policy/recall | ❌ |
seal/open | ❌ |
finish | ❌ |
finish function | ❌ |
action foo() {
action bar()
}
action calls another action from inside of an action, so that actions
can be abstracted. It is not allowed for actions to call themselves, or
to call other actions in a way that would cause recursion.