Backlog/projects/test-trampoline.zig

9 lines
236 B
Zig

// This is a trampoline file, it only depends on core.
// Then calls LoadModule on the target module
const core = @import("core").module;
pub fn launch() void {
core.engine_log("This is where my modules would be loaded!", .{});
}