diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-06-16 21:58:13 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-06-16 22:02:32 +0100 |
| commit | 9bc9dc4ce673ca8c1458246883f0a6026a2dc1aa (patch) | |
| tree | 20277ee2b4ed10537bd52eaff3d9b6ded3c446c1 /examples/06-imports/src | |
| parent | 67e2999051eb257aeb71070b9a1577c47b1e017f (diff) | |
Add import example
Diffstat (limited to 'examples/06-imports/src')
| -rw-r--r-- | examples/06-imports/src/line.hob | 7 | ||||
| -rw-r--r-- | examples/06-imports/src/point.hob | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/examples/06-imports/src/line.hob b/examples/06-imports/src/line.hob new file mode 100644 index 0000000..53ea271 --- /dev/null +++ b/examples/06-imports/src/line.hob @@ -0,0 +1,7 @@ +import {Point} from ../point; + +/// A straight line from one point to another. +struct Line { + field start: Point; + field end: Point; +} diff --git a/examples/06-imports/src/point.hob b/examples/06-imports/src/point.hob new file mode 100644 index 0000000..87f9953 --- /dev/null +++ b/examples/06-imports/src/point.hob @@ -0,0 +1,5 @@ +/// A 2D point. +struct Point { + field x: Int32; + field y: Int32; +} |
