When creating variables, the variable name must always start with a letter and cannot contain spaces, though numbers and underscores are allowed to be contained in it also.
Create a function which returns true if a given variable name is valid, otherwise return false.
variable_valid("result") ➞ true
variable_valid("odd_nums") ➞ true
variable_valid("2TimesN") ➞ false