v/vlib/v/tests/modules/shapes/shapes.v

12 lines
114 B
V

module shapes
pub struct Point {
pub mut:
x int
y int
}
pub struct Line {
pub mut:
ps []Point
}