You can declare multiple variables by separating each identifier with commas. Like this... VAR FOO, BAR You can also specify the type of a variable by suffixing certain characters... No Suffix - FOO - Will declare as decimal by default. Percent Sign - FOO% - Will declare as integer. Numeral - FOO# - Will declare as decimal. Dollar Sign - FOO$ - Will declare as string.