summaryrefslogtreecommitdiff
path: root/examples/06-list/src/point.hob
blob: 8dd438c1342faffe1233aa0117eeb986a6c3c280 (plain)
1
2
3
4
5
6
7
8
struct Path {
    field points: List[Point];
}

struct Point {
    field x: Int32;
    field y: Int32;
}