summaryrefslogtreecommitdiff
path: root/examples/06-imports/src/line.hob
blob: 53ea27130578664fe87c256fa88639f98059fa48 (plain)
1
2
3
4
5
6
7
import {Point} from ../point;

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