변수 이름은 BSL의 이름을 지정하기 위한 표준 규칙을 따릅니다.
변수 이름:
다음 예에서는 이름 지정 제한의 사용을 보여 줍니다.
예 1:
Dim FirstName FirstName = "John" 'Below is illegal Dim 1One 'Syntax Error as it is not starting with alphabetic 'Below is illegal Dim One.Var 'Syntax Error as it has period embedded
예 2:
Dim Age Age = 30