Language catalogKeywordsfuncOn this pagefuncDefines a function. Syntax func [function name] Example func $Add with $left $right return $left + $rightend$sum = run $Add 5 3Print "5 + 3 = {$sum}"# Functions without parameters can be called by name.func Announce Print "The round has started."endrun Announce