Introduction
Why use Jazz?
Build system and package manager
var dependencies = [
(package: "Example",version: " 0.0.1",git: "https://github.com/user/Lib")
];Compile-time execution
fun bit_cast<T,U>(val: T): U {
comptime {
assert(sizeof(T) == sizeof(U));
}
...
}Compile-time reflection
Last updated