Dim (statement)

About this task

Naming ConventionsVariable names must follow these naming rules:

Procedure

  1. Must start with a letter.
  2. May contain letters, digits, and the underscore character ( _ ); punctuation is not allowed. The exclamation point ( ! ) can appear within the name as long as it is not the last character, in which case it is interpreted as a type-declaration character.
  3. The last character of the name can be any of the following type-declaration characters: # , @ , % , ! , & , and $ .
  4. Must not exceed 80 characters in length.
  5. Cannot be a reserved word.