#const Self = @This();
1 messages · Page 1 of 1 (latest)
all files in zig are structs
CodeGen.zig is actually a struct definition
it’s meant to be imported as
const CodeGen = @import(“CodeGen.zig”) and used as a struct
so @This() works just as youd expect
I see thanks