summaryrefslogtreecommitdiff
path: root/examples/15-imports/src/line.hob
blob: 562d77f71c29044a91ea3883edd92ebc185b23fb (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;
}