2024-04-06 08:33:14 -06:00

12 lines
175 B
Plaintext

const Struct = struct {
previous: ?&Struct,
next: ?&Self,
};
const main = fn () *!void {
var s = Struct{
.previous = null,
.next = null,
};
}