### Build Simple Language Native Image Source: https://github.com/graalvm/simplelanguage/blob/master/standalone/README.md Builds a native executable image of the 'simple language' project. This command utilizes Maven's 'native' profile to create a self-contained binary. ```Shell mvn package -Pnative ``` -------------------------------- ### Build SimpleLanguage Native Image using Maven Source: https://github.com/graalvm/simplelanguage/blob/master/README.md This command compiles the SimpleLanguage project into a native executable using Maven's 'native' profile. This creates a standalone binary that does not require a JVM to run. ```Shell mvn package -Pnative ``` -------------------------------- ### Run SimpleLanguage Native Image Source: https://github.com/graalvm/simplelanguage/blob/master/README.md This command executes the compiled native image of SimpleLanguage. The native executable is located in the `standalone/target` directory after a successful native build. ```Shell ./standalone/target/slnative ``` -------------------------------- ### Run Simple Language Native Image Source: https://github.com/graalvm/simplelanguage/blob/master/standalone/README.md Executes the native image version of the 'simple language' application. This command is used after the project has been built using 'mvn package -Pnative'. ```Shell target/slnative ``` -------------------------------- ### Run SimpleLanguage on JVM Source: https://github.com/graalvm/simplelanguage/blob/master/README.md This command executes the SimpleLanguage project using a JDK from the JAVA_HOME environment variable. It assumes the project has been built and the executable script is available. ```Shell ./sl ``` -------------------------------- ### Build SimpleLanguage for JVM using Maven Source: https://github.com/graalvm/simplelanguage/blob/master/README.md This command compiles the SimpleLanguage project into a JAR file, preparing it for execution on a Java Virtual Machine. It uses Maven's default packaging goal. ```Shell mvn package ``` -------------------------------- ### Build Simple Language JVM Standalone Source: https://github.com/graalvm/simplelanguage/blob/master/standalone/README.md Builds the 'simple language' project into a standalone JVM application. This uses Maven's default packaging goal and requires a JDK configured via JAVA_HOME. ```Shell mvn package ``` -------------------------------- ### Run Simple Language JVM Standalone Source: https://github.com/graalvm/simplelanguage/blob/master/standalone/README.md Executes the standalone JVM version of the 'simple language' application. This command is used after the project has been built using 'mvn package'. ```Shell target/sl ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.