12 lines
286 B
Zig
12 lines
286 B
Zig
// templated file
|
|
//
|
|
// should still be a formattable zig file
|
|
// even if it is not compile-able
|
|
//
|
|
// definitions marked with // TEMPLATE_DEFINITION
|
|
// are removed during the templating step
|
|
|
|
const programName = "__program_name"; // TEMPLATE_DEFINITION
|
|
|
|
export fn loadModule() void {}
|