Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 516 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 516 Bytes

JVM/tools/java

The binary crate for the JVM implementation.

This crate houses no actual logic for the JVM, its purpose is to spin up the main thread with the user's arguments. The actual runtime implementation is housed in the runtime crate.

Running the JVM

If lost, check --help for more indepth explanations

cargo run -- <ClassName>

Example:

# Set the main class to "Main.class"
# NOTE: The `class` extension MUST be omitted!
cargo run -- Main