📄️ function - return
The function statement is used to declare a function. A function usually also contains a return statement.
📄️ let
The let statement is for variable assignment.
📄️ if - else - elseif
An if statement will execute the its following code block if the expression evaluates to true.
📄️ for
The for statement initiates loop logic, allowing the iteration of a range of values.
📄️ try - catch - finally
An example FPL code block showing try / catch / finally logic support: