summaryrefslogtreecommitdiff
path: root/examples/01-struct/src/point.hob
blob: abe989dbaa9ee0600ffe1edc9aec37e010ee0589 (plain)
1
2
3
4
5
6
7
8
9
struct Line {
    field start: Point;
    field end: Point;
}

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