In a way, yes. A few variable variable names are actually just keys to a higher level object. Both Coldfusion and Javascript come to mind. In Javascript you can write foo=bar , but you really said:
window['foo'] = bar;
You can write just as easily
window['i haz a name'] = bar;
Different areas in Coldfusion can also be viewed as either (dict | hash | associative array) or name.
Of course, once you create a name with a space, it is harder for it to access without using the hash search syntax.
kojiro
source share