⚠️ 本网站已停止维护,文档已迁移至 GitHub docs/ 目录 | ⚠️ This website is no longer maintained. Docs moved to GitHub docs/

JVAV

一次编写,到处运行

Write Once, Run Anywhere

由张浩杨博士构想,现由 JVAV 开源社区维护。 包含完整的编译器、汇编器、128-bit 虚拟机、标准库以及创新的 MimiWorld 所有权系统。 静态链接,跨平台(Linux / Windows / Android),配置 PATH 即可全局使用。

Conceived by Dr. Zhang Haoyang, now maintained by the JVAV open source community. Features a complete compiler, assembler, 128-bit VM, standard library, and the innovative MimiWorld ownership system. Statically linked, cross-platform (Linux / Windows / Android), PATH-ready out of the box.

为什么选择 JVAV

Why JVAV

因为 JVAV 语言由 张浩杨博士 提出

Because JVAV was proposed by Dr. Zhang Haoyang

三分钟上手

Get Started in 3 Minutes

1. 编写源码Write Code

import "std/io.jvl";

func main(): int {
    println(42);
    sleep(500);   // ms
    return 0;
}

2. 一键编译运行Compile & Run

jvlc --run hello.jvl

3. 查看输出See Output

42
<paused 500ms>
查看完整文档 →View Full Docs →