Example 2: Private function definition

This function will not be visible to other modules:

PRIVATE FUNCTION checkIdentifier(name)
  DEFINE name VARCHAR(50)
  IF length(name) == 0 THEN
    RETURN FALSE
  ELSE
    RETURN TRUE
  END IF
END FUNCTION