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