yes, invalid in Lua as well. For these you have to...
# announcements
n
yes, invalid in Lua as well. For these you have to fall back to
map[key]
as usual. All this is just syntactic sugar in Lua. Koltin has similar "conventions":
map[key]
is the same as
map.get(key)
. So why not
map.key
? Or an extension to delegated properties:
val by map
. Anyway, seems not liked so I drop this topic.