8 lines
82 B
Plaintext
8 lines
82 B
Plaintext
comptime {
|
|
_ = _start;
|
|
}
|
|
|
|
const _start = () noreturn {
|
|
while (true) {}
|
|
};
|