Conversation

tricky thing for `.0` etc. is disambiguating the fact that you are looking up a field name vs a variable. As in: let index = 1; let data = vec![1, 2, 3]; data.index …which I guess could be done using type information, but would be kind of surprising… 😅
2
2
well if it's a field it has to be literal, right? You can't dynamically look up a field by putting its name into a variable and using that. At least in rust you can't.
1
1