Native code generation backend for Tish.
rust:tishlang_compileemits Rust callingtishlang_runtime(Value, etc.), thencargo build --releaselinks the user binary.cranelift: Embeds serialized bytecode in an object file and linkstishlang_cranelift_runtime— the executable runstishlang_vmon that chunk (same astish run --backend vm), not CLIF lowering.llvm: Same embedded-bytecode + VM link path viatishlang_llvm/ shared linker.
Future: Lower bytecode (or typed IR) through Cranelift/LLVM to real machine code where semantics allow;
emit Rust using Vec<f64> / fixed primitives instead of Value on hot paths.