A minimal Java SDK for the Microsandbox project.
<dependency>
<groupId>dev.microsandbox</groupId>
<artifactId>microsandbox</artifactId>
<version>0.1.0</version>
</dependency>implementation 'dev.microsandbox:microsandbox:0.1.0'import dev.microsandbox.HelloWorld;
public class Example {
public static void main(String[] args) {
// Print a greeting
HelloWorld.greet("World");
}
}Check out the src/main/java/dev/microsandbox/examples directory for examples of how to use this SDK.
You can run the examples with Maven:
# Build the project
mvn clean install
# Run the example
mvn exec:javaSee DEVELOPMENT.md for information on building from source and contributing to the project.