summaryrefslogtreecommitdiff
path: root/examples/10-native-type/src/point.hob
blob: 7178dcb4d0b834f5a3a692bda924f4bdec2edaa0 (plain)
1
2
3
4
5
6
7
8
native Point {
}

/// A straight line from one point to another.
struct Line {
    field start: Point;
    field end: Point;
}