Function Call Statements

A function call by itself is a statement:

RedrawMap()
SetFillStyle("States", fillstyle)

If the function returns a value that is not assigned to a variable, the returned value is ignored:

x = SelectAll() // x is the number of selected records
SelectAll() // This is OK too