5 ms·
I don't feel you answered the questions fully. Telling someone to learn the language to get the rest of the answers isn't right and would put me off it because
by fasfsadfsa 5y ago
I don't feel you answered the questions fully. Telling someone to learn the language to get the rest of the answers isn't right and would put me off it because it suggests there aren't satisfactory reasons for the design.
I'm sure that's not the case but still.
- filipncs 5y agoI, on the other hand, am not in any way put off by someone not trying to answer every single part of a comment, when it starts out with "Odin seems like a bunch of features copied from a bunch of different languages without making sure they're (a) good and (b) consistent"!
- jessermeyer 5y agoNot only that, but without even knowing the answer to their (valid) questions, concludes with `it's a patchwork with bad seams.`.
- fasfsadfsa 5y agoI agree it should not have ended that way.
- fasfsadfsa 5y agoThere seemed to be valid questions like > Things like ranges being `1..5` in one context but `1:5` in another Is this true? Perhaps illustrate why "Slice expressions and range expressions [are] different was on purpose, as they are very different operations semantically". You should be able to clear that up easily by pointing to the language overview or something. > but still having classic for loops which ranges almost completely obsolete Is this unreasonable? And > but why add the latter syntax to the language anyway, then tell people not to use it? Same. If there are good reasons there should be good (and simple) explanations. Questions like these should be an opportunity to clarify the whys of the language. Ignoring them is discouraging.
- gingerBill 5y agoFor slice expressions, the reason for the syntax was done on purpose for the following reasons: * It's the same syntax as Go and Python, making it familiar to others who have used those languages * It allows for partial ranges e.g. `x[:]`, `x[:n]`, `x[i:]` * Partial ranges with the _two_ range expressions (a..<b and a..=b) look awful and are inconsistent: `x[..<]` `x[..=]`, `x[..<n]` `x[..=n]`, `x[i..<]` `x[i..=]` * You effectively only ever want Python/Go like semantics with slicing because Odin is a 0-index language * Ranges in Odin are only allowed in two contexts: `cases` and `for in` loops. As for C-style for loops, they are not obsolete by any stretch and any one who thinks so in think that the compiler can easily optimize a magical complex iterator without any problem. In languages without C-style for loops, you'll see people try to emulate them regardless with variables and a while loop, not just an iterator. As for syntax, where does it say "don't use it"? I really don't understand why people state things without evidence.
- fasfsadfsa 5y agoNow that's pretty good. May I suggest if it's not there already to add it to the language FAQ? > As for syntax, where does it say "don't use it"? I was quoting the questioner in good faith. If I re-quoted something untrue, sorry. As for why people do things like that, yeah, seen that before and I can't explain it.
- gingerBill 5y agoI could add it to the FAQ but it's not frequent enough yet :P
- fm77 5y agoInteresting (funny) side note: Niklaus Wirth did return the very same token named colon for ".." as well as for ":" in his Pascal compiler (page 24 and 25 in [1]). So back then you could have chosen whatever you prefer… :-) [1] https://www.research-collection.ethz.ch/bitstream/handle/20.500.11850/68667/eth-3055-01.pdf https://www.research-collection.ethz.ch/bitstream/handle/20....
- 5y ago