manifold-example/src/main/java/io/gitlab/jfronny/inceptum/Main.java

11 lines
246 B
Java
Raw Normal View History

2022-11-15 20:35:00 +01:00
package io.gitlab.jfronny.inceptum;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
// This doesn't
System.out.println(new ExampleRecord("aaee").toJson());
2022-11-15 20:35:00 +01:00
}
}