/*-- Helpers --*/ #strict 2 global func IIf(expression, truePart, falsePart) { if (expression) { return truePart; } else { return falsePart; } }