#vm #codegen #jazz #programming-language #machine #virtual #generation

simple_jazz

Library used for simple code generation for JazzVM

1 unstable release

0.1.0 Nov 14, 2018

#176 in #virtual

25 downloads per month

MIT license

56KB
1.5K SLoC

Jazz (Unmaintaned, please see https://github.com/jazz-lang/

license

Jazz is a register-based virtual machine and lightweight programming language

Jazz is heavily inspired by Gravity language

Goals

  • Clear and simple syntax
  • Integration with Rust
  • Interfacing with other languages than Rust
  • Make VM suitable for object oriented programming

Non-goals

  • Write simple book for learning Jazz programming language
  • JIT compilation
  • Generating bytecode files

Example code

func factorial(num) {
    if num == 0 {
        return 1;
    } else {
        return num * factorial(num - 1);
    }
}

func main() {
    print(factorial(5));
    return 0;
}
class Vector2 {
    var x;
    var y;
    func init(a,b) {
        this.x = a;
        this.y = b;
        return this;
    }

    func toString() {
        return concat("(",this.x,";",this.y,")");
    }
}

func main() {
    var vector = Vector2(2,-2);
    print(vector.toString());
}

Dependencies

~0.6–1MB
~15K SLoC