diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-07-02 16:32:26 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-07-02 16:37:31 +0100 |
| commit | 94d481c940fb36da896e2e80a62f39d849477f53 (patch) | |
| tree | 1df183249ec0cffe9c02f6a145dbb11bfef05a91 /examples/05-list/output | |
| parent | 6fe5f16e1b261dcc34f83ca9c6d6049d3591976b (diff) | |
Add inductive data types example
Diffstat (limited to 'examples/05-list/output')
| -rw-r--r-- | examples/05-list/output/java/.gitignore | 2 | ||||
| -rw-r--r-- | examples/05-list/output/java/pom.xml | 39 | ||||
| -rw-r--r-- | examples/05-list/output/java/src/main/java/org/zwobble/example/Main.java | 19 | ||||
| -rw-r--r-- | examples/05-list/output/rust/.gitignore | 1 | ||||
| -rw-r--r-- | examples/05-list/output/rust/Cargo.lock | 7 | ||||
| -rw-r--r-- | examples/05-list/output/rust/Cargo.toml | 6 | ||||
| -rw-r--r-- | examples/05-list/output/rust/rust-toolchain.toml | 2 | ||||
| -rw-r--r-- | examples/05-list/output/rust/src/main.rs | 12 | ||||
| -rw-r--r-- | examples/05-list/output/rust/src/point.rs | 10 |
9 files changed, 98 insertions, 0 deletions
diff --git a/examples/05-list/output/java/.gitignore b/examples/05-list/output/java/.gitignore new file mode 100644 index 0000000..ff511d4 --- /dev/null +++ b/examples/05-list/output/java/.gitignore @@ -0,0 +1,2 @@ +/src/gen/ +/target/ diff --git a/examples/05-list/output/java/pom.xml b/examples/05-list/output/java/pom.xml new file mode 100644 index 0000000..7493667 --- /dev/null +++ b/examples/05-list/output/java/pom.xml @@ -0,0 +1,39 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.zwobble.hobgoblin.examples</groupId> + <artifactId>example</artifactId> + <version>1.0-SNAPSHOT</version> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <maven.compiler.source>25</maven.compiler.source> + <maven.compiler.target>25</maven.compiler.target> + </properties> + + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>3.6.1</version> + <executions> + <execution> + <id>add-source</id> + <phase>generate-sources</phase> + <goals> + <goal>add-source</goal> + </goals> + <configuration> + <sources> + <source>src/gen/java</source> + </sources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> diff --git a/examples/05-list/output/java/src/main/java/org/zwobble/example/Main.java b/examples/05-list/output/java/src/main/java/org/zwobble/example/Main.java new file mode 100644 index 0000000..4cfb23f --- /dev/null +++ b/examples/05-list/output/java/src/main/java/org/zwobble/example/Main.java @@ -0,0 +1,19 @@ +package org.zwobble.example; + +import java.util.List; +import org.zwobble.example.types.point.Path; +import org.zwobble.example.types.point.Point; + +public class Main { + public static void main() { + Path path = new Path(List.of( + new Point(10, 25), + new Point(25, 10) + )); + + Path path2 = Path.arbitrary() + .addPoint(new Point(10, 25)) + .addPoint(new Point(25, 10)) + .build(); + } +} diff --git a/examples/05-list/output/rust/.gitignore b/examples/05-list/output/rust/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/examples/05-list/output/rust/.gitignore @@ -0,0 +1 @@ +/target diff --git a/examples/05-list/output/rust/Cargo.lock b/examples/05-list/output/rust/Cargo.lock new file mode 100644 index 0000000..9dc6e3e --- /dev/null +++ b/examples/05-list/output/rust/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "example" +version = "0.1.0" diff --git a/examples/05-list/output/rust/Cargo.toml b/examples/05-list/output/rust/Cargo.toml new file mode 100644 index 0000000..5d4c622 --- /dev/null +++ b/examples/05-list/output/rust/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "example" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/examples/05-list/output/rust/rust-toolchain.toml b/examples/05-list/output/rust/rust-toolchain.toml new file mode 100644 index 0000000..4fedb95 --- /dev/null +++ b/examples/05-list/output/rust/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "1.96" diff --git a/examples/05-list/output/rust/src/main.rs b/examples/05-list/output/rust/src/main.rs new file mode 100644 index 0000000..3c636af --- /dev/null +++ b/examples/05-list/output/rust/src/main.rs @@ -0,0 +1,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 } + ], + }; +} diff --git a/examples/05-list/output/rust/src/point.rs b/examples/05-list/output/rust/src/point.rs new file mode 100644 index 0000000..6249c0a --- /dev/null +++ b/examples/05-list/output/rust/src/point.rs @@ -0,0 +1,10 @@ +// Generated by hobgoblin. + +pub struct Path { + pub points: std::vec::Vec<crate::point::Point>, +} + +pub struct Point { + pub x: i32, + pub y: i32, +} |
