If I may beg your indulgence ...
I'm interested in Syntax and how programmers decipher what is presented to them without any context. It seems to me that good Syntax should be quickly interpreted, but not be as verbose as writing a step by step in plain language.
In an adhoc way I created a naming schema for my Personal C files, and I have a hundred or so files with names such as the following:
[ STR ]( e.N > X )f;
How would you interpret this ?
My Translation: Stream an Array of Immutable Strings Longer than Value "X" to f
Please link to examples of Syntax which you find easy to interpret.
I ask because I may use my schema for writing a Scripting Language, but only if it is obvious to the end user not taught to the end user.
