summaryrefslogtreecommitdiff
path: root/examples/10-transient-0/src
diff options
context:
space:
mode:
authorMichael Williamson <mike@zwobble.org>2026-07-04 23:31:53 +0100
committerMichael Williamson <mike@zwobble.org>2026-07-04 23:31:53 +0100
commit06ae500619b2c2401548f6eac9e97fce09fceb58 (patch)
tree8db4968d3db0d33a888285a07051cf7737cf1121 /examples/10-transient-0/src
parent5d15eac0f3fd7656f9b78c5796d936182572c297 (diff)
Support encode/decode of Int32 and structs
Diffstat (limited to 'examples/10-transient-0/src')
-rw-r--r--examples/10-transient-0/src/point.hob4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/10-transient-0/src/point.hob b/examples/10-transient-0/src/point.hob
new file mode 100644
index 0000000..82b55cc
--- /dev/null
+++ b/examples/10-transient-0/src/point.hob
@@ -0,0 +1,4 @@
+struct Point {
+ field x: Int32;
+ field y: Int32;
+}