finallySets
SETSWANA TRANSLATION: Runs cleanup code after
trySets/catchSets, always.
SETSWANA TRANSLATION: 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.
SETSWANA TRANSLATION: Syntax
SETSWANA TRANSLATION: Section titled “SETSWANA TRANSLATION: Syntax”SETSWANA TRANSLATION: trySets { ... } catchSets (e) { ... } finallySets { ... }SETSWANA TRANSLATION: Examples
SETSWANA TRANSLATION: Section titled “SETSWANA TRANSLATION: Examples”trySets {
kwala("teko");
} finallySets {
kwala("fedile");
}