Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zig-java/jaz

A JVM implementation in Zig!
https://github.com/zig-java/jaz

java jaz jvm zig

Last synced: about 1 month ago
JSON representation

A JVM implementation in Zig!

Awesome Lists containing this project

README

        

# jaz

**Ja**va in **Z**ig.

Parses Java class files and bytecode.

## Taking it for a spin

To try out jaz for yourself, install jvm 16, then run the following commands:
```bash
# Compiles Java source
javac test/src/jaztest/*.java

# Adds user path to javastd
echo "pub const conf = .{.javastd_path = \"/path/to/javastd\"};" > src/conf.zig

# Runs demo
zig build run
```