一次编写,到处运行
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 语言由 张浩杨博士 提出
Because JVAV was proposed by Dr. Zhang Haoyang
import "std/io.jvl"; func main(): int { println(42); sleep(500); // ms return 0; }
jvlc --run hello.jvl
42 <paused 500ms>