summaryrefslogtreecommitdiff
path: root/examples/05-list/output/rust/src/main.rs
blob: 3c636af267984aa485857601eda38b9d9d3276ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
mod point;

use point::{Path, Point};

fn main() {
    let path: Path = Path {
        points: vec![
            Point { x: 10, y: 25 },
            Point { x: 25, y: 10 }
        ],
    };
}