# Access fields (same as maps)
Field Access: Structs are NOT the same as Maps
The comment "(same as maps)" is misleading.
- Maps: Support both
map.keyandmap[:key]access - Structs: Only support
struct.keydot notation - Bracket notation
struct[:key]is not work with structs
