10-17-2024, 06:26 AM
Actually, I can easily use 12 symbols in my variable names. Can I ask what version of BASIC you're referring to, as I don't think it's QB64. Now, is there any missing symbols that I didn't include? You have to decide that for yourself!
Code: (Select All)
Dim xa% '% is used herre
Dim xa! '! is used here
Dim xa& '& is used here
Dim xa~% '~ is used here
Dim xa# '# is used here
Dim xa` '` is used here
Dim xa$ '$ is used here
Dim x.a '. is used here
Dim x_a '_ is used here
Dim x(0) '( is used here
Dim a(0) ' ) is used here
Dim xa(0, 0) ', is used here