summaryrefslogtreecommitdiff
path: root/examples/10-imports/src
diff options
context:
space:
mode:
authorMichael Williamson <mike@zwobble.org>2026-07-24 17:59:45 +0100
committerMichael Williamson <mike@zwobble.org>2026-07-24 17:59:45 +0100
commit2bc23bdc7fe01fc5921be8e09f405a8a1fd7bd65 (patch)
tree9df07f8aeba21f4fb91e23fcc8d1c7a4a57a42eb /examples/10-imports/src
parentc8baf035c5a1705b957931f56f9162125803e554 (diff)
Add Shared type
Diffstat (limited to 'examples/10-imports/src')
-rw-r--r--examples/10-imports/src/line.hob7
-rw-r--r--examples/10-imports/src/point.hob5
2 files changed, 12 insertions, 0 deletions
diff --git a/examples/10-imports/src/line.hob b/examples/10-imports/src/line.hob
new file mode 100644
index 0000000..562d77f
--- /dev/null
+++ b/examples/10-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/10-imports/src/point.hob b/examples/10-imports/src/point.hob
new file mode 100644
index 0000000..87f9953
--- /dev/null
+++ b/examples/10-imports/src/point.hob
@@ -0,0 +1,5 @@
+/// A 2D point.
+struct Point {
+ field x: Int32;
+ field y: Int32;
+}