No, style insensitivity does _not_ allow your to do what you want. The reason being that the language behind the scenes changes identifiers. The correct and honest way to say it is that Nim gives you less freedom (in that regard).
Look: e.g. in C (and many other languages) you can have two identifiers "foo_bar" and "fooBar" and they are two different things. In Nim, however, they are just two names for the _same_ thing.
