finallySets
Runs cleanup code after
trySets/catchSets, always.
Use finallySets after a trySets (and optional catchSets) block to run code whether or not an error occurred — typical for releasing resources or logging completion. This is a placeholder Setswana name — the canonical Setswana translation will be chosen later.
Syntax
Section titled “Syntax”trySets { ... } catchSets (e) { ... } finallySets { ... }Examples
Section titled “Examples”trySets {
kwala("teko");
} finallySets {
kwala("fedile");
}