summaryrefslogtreecommitdiff
path: root/examples/01-struct/src/point.hob
blob: 1f392af628a660b5636009f1d134f675b552d705 (plain)
1
2
3
4
5
6
7
8
9
10
11
/// A straight line from one point to another.
struct Line {
    field start: Point;
    field end: Point;
}

/// A 2D point.
struct Point {
    field x: Int32;
    field y: Int32;
}