# Compound data type

```ruby
struct Point {x, y}
var point = Point(1, 2)
say point.y                #=> 2
```
